-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 829 Bytes
/
pyproject.toml
File metadata and controls
31 lines (27 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[tool.poetry]
name = "htmlgen"
version = "3.0.0"
description = "HTML 5 Generator"
readme = "README.md"
authors = ["Sebastian Rittau <srittau@rittau.biz>"]
license = "MIT"
homepage = "https://github.com/srittau/python-htmlgen"
repository = "https://github.com/srittau/python-htmlgen"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Topic :: Text Processing :: Markup :: HTML",
]
packages = [{ include = "htmlgen" }, { include = "test_htmlgen" }]
include = ["*/py.typed", "*.pyi"]
[tool.poetry.dependencies]
python = ">=3.7"
[tool.poetry.dev-dependencies]
asserts = ">=0.8.0,<0.13"
mypy = "~1.4.0"
[tool.black]
line-length = 79
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"