-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
89 lines (82 loc) · 2.31 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
88
89
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
# SPDX-License-Identifier: GPL-3.0-or-later
# SPDX-FileCopyrightText: 2023, Ansible Project
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "antsibull-docs-parser"
dynamic = ["version"]
description = "Python library for processing Ansible documentation markup"
readme = "README.md"
requires-python = ">=3.9"
license = "GPL-3.0-or-later AND BSD-2-Clause"
license-files.globs = ["LICENSES/*.txt"]
authors = [
{ name = "Felix Fontein", email = "[email protected]" },
]
maintainers = [
{ name = "Felix Fontein", email = "[email protected]" },
{ name = "Maxwell G", email = "[email protected]" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Ansible",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Typing :: Typed",
]
[project.urls]
"Source code" = "https://github.com/ansible-community/antsibull-docs-parser/"
"Code of Conduct" = "https://docs.ansible.com/ansible/latest/community/code_of_conduct.html"
"Bug tracker" = "https://github.com/ansible-community/antsibull-docs-parser/issues"
"Changelog" = "https://github.com/ansible-community/antsibull-docs-parser/tree/main/CHANGELOG.md"
[project.optional-dependencies]
codeqa = [
"antsibull-changelog",
"flake8",
"pylint",
"reuse",
]
coverage = [
"coverage[toml]",
]
formatters = [
"black",
"isort",
]
test = [
"pyyaml",
"pytest",
"pytest-cov",
"pytest-error-for-skips",
]
typing = [
"mypy",
# https://github.com/facebook/pyre-check/issues/398
"pyre-check >= 0.9.17",
]
dev = [
# Used by nox sessions
"antsibull-docs-parser[codeqa]",
"antsibull-docs-parser[coverage]",
"antsibull-docs-parser[formatters]",
"antsibull-docs-parser[test]",
"antsibull-docs-parser[typing]",
# misc
"nox",
]
[tool.hatch.version]
path = "src/antsibull_docs_parser/__init__.py"
[tool.isort]
profile = "black"
[tool.coverage.paths]
source = [
"src",
"*/site-packages",
]