-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (37 loc) · 899 Bytes
/
pyproject.toml
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
32
33
34
35
36
37
38
39
40
41
42
[tool.poetry]
name = "constyle"
# Version is overwritten at build time by CI based on git tag
version = "0"
description = "A Python library to add style to your console."
authors = ["Abraham Murciano <[email protected]>"]
license = "GPLv3"
readme = "README.md"
repository = "https://github.com/abrahammurciano/python-constyle"
documentation = "https://abrahammurciano.github.io/python-constyle/constyle"
keywords = [
"terminal",
"console",
"style",
"color",
"colors",
"colour",
"colours",
"ansi",
]
[tool.poetry.dependencies]
python = "^3.7"
importlib-metadata = ">=4.11.0"
attributes-doc = ">=0.3.0"
[tool.poetry.dev-dependencies]
pytest = "*"
black = "*"
pdoc3 = "*"
types-toml = "*"
mypy = "*"
[tool.poetry.scripts]
constyle = "constyle.__main__:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
exclude = [".venv"]