forked from pytest-dev/pytest-django
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
70 lines (63 loc) · 1.91 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
[metadata]
name = pytest-django
description = A Django plugin for pytest.
long_description = file: README.rst
long_description_content_type = text/x-rst
author = Andreas Pelme
author_email = [email protected]
maintainer = Andreas Pelme
maintainer_email = [email protected]
url = https://pytest-django.readthedocs.io/
license = BSD-3-Clause
license_file = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Framework :: Django
Framework :: Django :: 2.2
Framework :: Django :: 3.0
Framework :: Django :: 3.1
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Software Development :: Testing
project_urls =
Source=https://github.com/pytest-dev/pytest-django
Changelog=https://pytest-django.readthedocs.io/en/latest/changelog.html
[options]
packages = pytest_django
python_requires = >=3.5
setup_requires = setuptools_scm>=1.11.1
install_requires = pytest>=5.4.0
[options.entry_points]
pytest11 =
django = pytest_django.plugin
[options.extras_require]
docs =
sphinx
sphinx_rtd_theme
testing =
Django
django-configurations>=2.0
[tool:pytest]
# --strict: warnings become errors.
# -ra: show extra test summary info for everything.
addopts = --strict -ra
DJANGO_SETTINGS_MODULE = pytest_django_test.settings_sqlite_file
testpaths = tests
[wheel]
universal = 0
[flake8]
# W503 line break before binary operator
ignore = W503
max-line-length = 99
exclude = lib/,src/,docs/,bin/
[isort]
forced_separate = tests,pytest_django,pytest_django_test