forked from wagtail/sphinx-wagtail-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
61 lines (51 loc) · 1.53 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
[metadata]
name = sphinx_wagtail_theme
version = 5.0.5.dev0
author = Coen van der Kamp
author_email = coen@fourdigits.nl
description = Sphinx Wagtail theme
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/wagtail/sphinx_wagtail_theme
project_urls =
Bug Tracker = https://github.com/wagtail/sphinx_wagtail_theme/issues
classifiers =
Framework :: Sphinx
Framework :: Sphinx :: Theme
Development Status :: 5 - Production/Stable
License :: OSI Approved :: MIT License
Intended Audience :: Developers
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Operating System :: OS Independent
Topic :: Documentation
Topic :: Software Development :: Documentation
[options]
packages = find:
python_requires = >=3.6
include_package_data = True
[bdist_wheel]
universal = 1
[flake8]
exclude = .conda-*,.github,.pytest_cache,docs,node_modules,.svn,CVS,.bzr,.hg,.git,__pycache__,.tox,.eggs,*.egg,*GENERATED*
max-line-length = 127
[tool:pytest]
# If a pytest section is found in one of the possible config files
# (pytest.ini, tox.ini or setup.cfg), then pytest will not look for any others,
# so if you add a pytest config section elsewhere,
# you will need to delete this section from setup.cfg.
norecursedirs =
migrations
python_files =
test_*.py
*_test.py
tests.py
addopts =
-ra
--strict-markers
--doctest-modules
--doctest-glob=\*.rst
--tb=short
testpaths =
tests