forked from ansible-community/antsibull-build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
72 lines (66 loc) · 1.82 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
[build-system]
requires = ["poetry-core>=1.0.7"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "antsibull"
version = "0.42.0"
description = "Tools for building the Ansible Distribution"
authors = ["Toshio Kuratomi <[email protected]>"]
license = "GPL-3.0-or-later"
readme = "README.md"
repository = "https://github.com/ansible-community/antsibull"
packages = [
{ include = "antsibull", from="src" },
{ include = "sphinx_antsibull_ext", from="src" },
{ include = "tests", format = "sdist" }
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Ansible",
"Intended Audience :: Developers"
]
[tool.poetry.urls]
"Code of Conduct" = "https://docs.ansible.com/ansible/latest/community/code_of_conduct.html"
"Bug tracker" = "https://github.com/ansible-community/antsibull/issues"
[tool.poetry.scripts]
antsibull-build = "antsibull.cli.antsibull_build:main"
antsibull-lint = "antsibull.cli.antsibull_lint:main"
antsibull-docs = "antsibull.cli.antsibull_docs:main"
[tool.poetry.dependencies]
python = "^3.6.1"
aiocontextvars = {version = "*", python = "~3.6"}
aiofiles = "*"
aiohttp = ">= 3.0.0"
ansible-pygments = "*"
antsibull-changelog = ">= 0.14.0"
asyncio-pool = "*"
docutils = "*"
importlib-metadata = {version = "*", python = "<3.8"}
jinja2 = "*"
# major/minor was introduced here
packaging = ">= 20.0"
perky = "*"
pydantic = "*"
PyYAML = "*"
rstcheck = "^3"
semantic_version = "*"
sh = "*"
sphinx = "*"
# 0.5.0 introduces dict_config
twiggy = ">= 0.5.0"
[tool.poetry.dev-dependencies]
asynctest = "*"
cryptography = "*"
codecov = "*"
flake8 = ">= 3.8.0"
mypy = "*"
# https://github.com/facebook/pyre-check/issues/398
pyre-check = "^0.0.46"
pylint = "^2.12.0"
pytest = "*"
pytest-asyncio = ">= 0.12"
pytest-cov = "*"
[tool.isort]
line_length = 100
multi_line_output = 0
balanced_wrapping = true