-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
61 lines (53 loc) · 1.76 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
[build-system]
build-backend = 'setuptools.build_meta'
requires = ['setuptools >= 61.0', 'versioneer[toml]']
[project]
name = 'autodocsumm'
dynamic = ["version"]
description = 'Extended sphinx autodoc including automatic autosummaries'
readme = 'README.rst'
keywords = ['sphinx', 'autodoc', 'autosummary', 'content', 'table']
authors = [
{ name = 'Philipp S. Sommer', email = '[email protected]' },
]
license = { text = 'Apache-2.0' }
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Documentation',
'License :: OSI Approved :: Apache Software License',
'Framework :: Sphinx',
'Framework :: Sphinx :: Extension',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'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',
'Operating System :: OS Independent',
]
requires-python = '>= 3.7'
dependencies = [
'Sphinx >= 4.0, < 9.0',
]
[project.urls]
Homepage = "https://github.com/Chilipp/autodocsumm"
Documentation = "https://autodocsumm.readthedocs.io/en/latest/"
Source = "https://github.com/Chilipp/autodocsumm"
Tracker = "https://github.com/Chilipp/autodocsumm/issues"
[tool.setuptools]
zip-safe = false
[tool.setuptools.packages.find]
namespaces = false
exclude = ['docs', 'tests*', 'examples']
[tool.pytest.ini_options]
addopts = '-v'
[tool.versioneer]
VCS = 'git'
style = 'pep440'
versionfile_source = 'autodocsumm/_version.py'
versionfile_build = 'autodocsumm/_version.py'
tag_prefix = 'v'
parentdir_prefix = 'autodocsumm-'