-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.cfg
41 lines (38 loc) · 1.22 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
[metadata]
name = flake8_polyfill
version = attr: flake8_polyfill.__version__
description = Polyfill package for Flake8 plugins
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/pycqa/flake8-polyfill
author = Ian Stapleton Cordasco
author_email = [email protected]
license = MIT
license_file = LICENSE
classifiers =
Environment :: Console
Framework :: Flake8
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: Implementation :: CPython
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Software Development :: Quality Assurance
[options]
packages = flake8_polyfill
install_requires =
flake8
python_requires = >=3.6
package_dir = =src
[bdist_wheel]
universal = 1
[tool:pytest]
norecursedirs = .git .* *.egg* old docs dist build
addopts = -rw