-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
52 lines (49 loc) · 1.28 KB
/
setup.cfg
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
[flake8]
max-line-length = 100
exclude =
.git,
__pycache__,
venv,
.venv,
.tox,
build/,
dist/,
env,
docs/build/
select = C,E,F,W,B,B950
extend-ignore = E203, E501
[metadata]
name = sphinx-subprojecttoctree
author = Dries Schaumont
author_email = [email protected]
url = https://sphinx-subprojecttoctree.readthedocs.io
description = Subprojecttoctrees is a Sphinx extension that aims to facilitate the integration of several documentation sources into a single Read the Docs webpage.
project_urls =
Changelog = https://sphinx-subprojecttoctree.readthedocs.io/en/latest/changelog.html
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
classifiers =
Operating System :: OS Independent
Framework :: Sphinx :: Extension
Development Status :: 4 - Beta
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3 :: Only
Topic :: Documentation :: Sphinx
[options]
python_requires = >=3.8
setup_requires =
setuptools-scm
setuptools_scm_git_archive
install_requires =
sphinx >= 4.4.0,< 8
requests ~= 2.27
packages =
subprojecttoctree
[options.extras_require]
docs =
sphinx_rtd_theme>=1.0,<1.4
sphinx-issues~=3.0.0
dev =
tox
pre-commit