forked from collective/sphinxcontrib-httpexample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
73 lines (65 loc) · 1.5 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
[metadata]
name = sphinxcontrib-httpexample
version = 0.8.1.dev0
description = Adds example directive for sphinx-contrib httpdomain
long_description = file: README.rst, CHANGELOG.rst
keywords = sphinx, extension, http, rest, documentation
author = Asko Soukka
author_email = asko.soukka@iki.fi
url = https://github.com/collective/sphinxcontrib-httpexample
license = GPL version 2
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Environment :: Web Environment
Framework :: Sphinx :: Extension
Intended Audience :: Developers
License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Operating System :: OS Independent
Programming Language :: Python :: 2
Programming Language :: Python :: 3
Topic :: Documentation
Topic :: Utilities
[options]
setup_requires =
pytest-runner
install_requires =
astunparse
docutils
sphinx
sphinxcontrib-httpdomain
tests_require =
pytest
snapshottest
sphinx_rtd_theme
sphinx-testing
package_dir =
= src
packages = find:
namespace_packages =
sphinxcontrib
zip_safe = False
[options.package_data]
* = static/*
[options.packages.find]
where =
src
[check-manifest]
ignore =
*.cfg
.coveragerc
.editorconfig
.gitattributes
[aliases]
test = pytest
[flake8]
exclude = .git,__pycache__,build,dist
max-complexity = 20
[isort]
force_alphabetical_sort = True
force_single_line = True
lines_after_imports = 2
line_length = 200
not_skip = __init__.py
[bdist_wheel]
universal = 1