-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
66 lines (60 loc) · 2.09 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
[tool.poetry]
name = "cmdkit"
version = "2.7.7"
description = "A command-line utility toolkit for Python."
readme = "README.rst"
license = "Apache-2.0"
homepage = "https://cmdkit.readthedocs.io"
documentation = "https://cmdkit.readthedocs.io"
repository = "https://github.com/glentner/cmdkit"
authors = [
"Geoffrey Lentner <[email protected]>"
]
keywords = ["command-line", "utility", "toolkit"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"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",
"License :: OSI Approved :: Apache Software License",
]
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
tomli = {version = "^2.1.0", optional = true}
tomli-w = {version = "^1.1.0", optional = true}
pyyaml = {version = "^6.0.1", optional = true}
[tool.poetry.extras]
toml = ['tomli', 'tomli-w']
yaml = ['pyyaml']
[tool.poetry.group.docs.dependencies]
sphinx = "^7.2.6"
sphinx-sitemap = "^2.5.1"
sphinx-autobuild = "^2021.3.14"
sphinx-copybutton = "^0.5.2"
sphinxext-opengraph = "^0.9.1"
sphinxcontrib-details-directive = "^0.1.0"
sphinx-toolbox = "^3.5.0"
pydata-sphinx-theme = "^0.15.1"
enum-tools = {extras = ["sphinx"], version = "^0.10.0"}
docutils = "^0.21.1" # NOTE: https://github.com/python-poetry/poetry/issues/9293
[tool.poetry.group.dev.dependencies]
tomli = "^2.1.0"
tomli-w = "^1.1.0"
pyyaml = "^6.0.1"
pytest = "^7.4.4"
hypothesis = "^6.92.6"
sphinx-autobuild = "^2021.3.14"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = ["--strict-markers", ]
markers = [
"unit: Unit tests are short, interface driven tests on discrete components.",
"integration: Integration tests are often longer and deal with the interaction between systems.",
"parameterize: Place holder for parameterized tests (not a real type).",
]