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
|
[metadata]
license = MIT
name = pytest-flask
license_files = LICENSE
author = Vital Kudzelka
keywords = pytest, flask, testing
author_email = vital.kudzelka@gmail.com
url = https://github.com/pytest-dev/pytest-flask
long_description = file: README.rst, docs/changelog.rst, LICENSE
long_description_content_type = text/x-rst
description = A set of py.test fixtures to test Flask applications.
project_urls =
Source = https://github.com/pytest-dev/pytest-flask
Issue tracker = https://github.com/pytest-dev/pytest-flask/issues
classifiers=
Framework :: Pytest
Environment :: Plugins
Programming Language :: Python
Environment :: Web Environment
Intended Audience :: Developers
Operating System :: OS Independent
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
License :: OSI Approved :: MIT License
Topic :: Software Development :: Testing
Development Status :: 5 - Production/Stable
Topic :: Software Development :: Libraries :: Python Modules
[options]
packages = pytest_flask
zip_safe = False
python_requires = >= 3.7
setup_requires = setuptools_scm
package_dir =
=src
[options.packages.find]
exclude = docs, tests
[options.entry_points]
pytest11 =
flask = pytest_flask.plugin
[flake8]
# B = bugbear
# E = pycodestyle errors
# F = flake8 pyflakes
# W = pycodestyle warnings
# B9 = bugbear opinions
# E203 = slice notation whitespace, invalid
# E501 = line length, handled by bugbear B950
# E722 = bare except, handled by bugbear B001
# W503 = bin op line break, invalid
# F401 = unused imports, false positives
# F811 = redefinition of variables, flase positives
select = B, E, F, W, B9
ignore =
E203
E501
E722
W503
F401
F811
max-line-length = 80
|