forked from devanshshukla99/sphinx-versioned-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
76 lines (68 loc) · 1.66 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[metadata]
name = sphinx-versioned-docs
author = devanshshukla99
author_email = [email protected]
url = https://github.com/devanshshukla99/sphinx-versioned-docs
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Framework :: Sphinx :: Extension
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: POSIX :: Linux
Operating System :: Unix
Operating System :: MacOS
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Documentation :: Sphinx
Topic :: Software Development :: Documentation
license = MIT
description = Sphinx extension to build versionsed docs.
long_description = file: README.rst
[options]
zip_safe = False
include_package_data = True
packages = find:
python_requires = >=3.7
setup_requires =
setuptools_scm
install_requires =
GitPython>=3.1.31
loguru>=0.7.0
setuptools>=66.0.0
sphinx>=4.6.0
typer>=0.9.0
rich
[options.packages.find]
exclude =
tests
[options.package_data]
* = *.js, *.html, *.css, *.woff
[options.extras_require]
docs =
sphinx-automodapi>=0.13
sphinx_rtd_theme
tests =
pytest
beautifulsoup4
all =
sphinx-versioned-docs[docs]
sphinx-versioned-docs[tests]
[options.entry_points]
console_scripts =
sphinx-versioned = sphinx_versioned.__main__:app
[flake8]
max-line-length = 110
[tool:pytest]
norecursedirs = ".tox" "*.egg-info"
minversion = 4.6
testpaths = tests
[coverage:run]
disable_warnings = no-data-collected
omit =
*/__init__*
*/_version.py
tests/*
*/conftest.py
*setup*