forked from tox-dev/sphinx-autodoc-typehints
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
39 lines (35 loc) · 1.14 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
[metadata]
name = sphinx-autodoc-typehints
description = Type hints (PEP 484) support for the Sphinx autodoc extension
long_description = file: README.rst
author = Alex Grönholm
author_email = [email protected]
license = MIT
project_urls =
Bug Tracker = https://github.com/agronholm/sphinx-autodoc-typehints/issues
Source Code = https://github.com/agronholm/sphinx-autodoc-typehints
classifiers =
Development Status :: 5 - Production/Stable
Framework :: Sphinx :: Extension
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Framework :: Sphinx :: Extension
Topic :: Documentation :: Sphinx
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
[options]
py_modules = sphinx_autodoc_typehints
python_requires = !=3.5.0, !=3.5.1
install_requires =
Sphinx >= 1.7
typing >= 3.5; python_version == "3.4"
[options.extras_require]
test = pytest >= 3.1.0
[flake8]
max-line-length = 99
[tool:pytest]
testpaths = tests/