-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
87 lines (70 loc) · 1.75 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# Cannot use this for packaging: see https://github.com/20c/ctl/issues/24
# currently used only for linting
[tool.poetry]
name = "ctl"
repository = "https://github.com/20c/ctl"
version = "1.2.0"
description = "Full control of your environment"
authors = ["20C <[email protected]>"]
readme = "README.md"
license = "Apache-2.0"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Documentation",
]
packages = [{ include = "ctl", from = "src" }]
[tool.poetry.scripts]
ctl = "ctl.cli:main"
[tool.poetry.dependencies]
python = "^3.9"
confu = ">=1.4"
grainy = ">=1.4"
munge = ">=1"
natsort = ">=8"
pluginmgr = ">=1.2.1"
semver = "<=3"
GitPython = ">=3.1.36"
ogr = ">=0.46.0"
pydantic = ">=2.3.0"
[tool.poetry.dev-dependencies]
# testing
coverage = ">=5"
pytest = ">=6"
pytest-cov = ">=2.10.1"
pytest-filedata = "^1.0.0"
tox = ">=3"
tox-gh-actions = ">=2"
jinja2 = ">=2"
tmpl = ">=1"
twine = ">=3"
PyYAML = ">1"
tomlkit = "<1"
# linting
# bandit = ">=1.6.2"
black = ">=20"
isort = ">=5.7"
flake8 = ">=3.8"
mypy = ">=0.950"
pre-commit = ">=2.13"
pyupgrade = ">=2.19"
# docs
markdown = "*"
markdown-include = ">=0.5,<1"
mkdocs = ">=1.2.3"
[tool.poetry.plugins."markdown.extensions"]
pymdgen = "pymdgen.md:Extension"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
multi_line_output = 3