-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
53 lines (43 loc) · 1.27 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
[build-system]
requires = ["setuptools-generate == 0.0.6", "parso"]
build-backend = "setuptools.build_meta"
# https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
[project]
name = "doq"
description = "Docstring generator"
readme = "README.rst"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Documentation",
"Topic :: Software Development :: Documentation",
]
dependencies = ["parso", "jinja2", "toml"]
dynamic = ["version"]
[project.optional-dependencies]
completion = ["shtab"]
test = ["parameterized", "pytest"]
[[project.authors]]
name = "Shinya Ohyanagi"
email = "[email protected]"
[project.license]
text = "BSD"
[project.urls]
Homepage = "http://github.com/heavenshell/py-doq"
[project.scripts]
doq = "doq.cli:main"
[tool.setuptools.data-files]
"share/man/man1" = ["sdist/doq.1"]
"share/bash-completion/completions" = ["sdist/doq"]
"share/zsh/site-functions" = ["sdist/_doq"]
[tool.setuptools.packages.find]
include = ["doq"]
[tool.setuptools.dynamic]
version = {attr = "doq.__version__"}
[tool.pytest.ini_options]
addopts = "-ra"
testpaths = ["tests"]