1
- [bdist_wheel]
2
- universal = 1
3
-
4
1
[metadata]
5
2
name = flake8
6
3
version = attr: flake8.__version__
7
- license = MIT
8
- license_file = LICENSE
9
4
description = the modular source code checker: pep8 pyflakes and co
10
5
long_description = file: README.rst
6
+ long_description_content_type = text/x-rst
7
+ url = https://github.com/pycqa/flake8
11
8
author = Tarek Ziade
12
9
author_email = tarek@ziade.org
13
10
maintainer = Ian Stapleton Cordasco
14
11
maintainer_email = graffatcolmingov@gmail.com
15
- url = https://github.com/pycqa/flake8
12
+ license = MIT
13
+ license_file = LICENSE
16
14
classifiers =
17
15
Development Status :: 5 - Production/Stable
18
16
Environment :: Console
@@ -21,28 +19,30 @@ classifiers =
21
19
License :: OSI Approved :: MIT License
22
20
Programming Language :: Python
23
21
Programming Language :: Python :: 3
22
+ Programming Language :: Python :: 3 :: Only
24
23
Programming Language :: Python :: 3.6
25
24
Programming Language :: Python :: 3.7
26
25
Programming Language :: Python :: 3.8
27
26
Programming Language :: Python :: 3.9
27
+ Programming Language :: Python :: 3.10
28
+ Programming Language :: Python :: Implementation :: CPython
29
+ Programming Language :: Python :: Implementation :: PyPy
28
30
Topic :: Software Development :: Libraries :: Python Modules
29
31
Topic :: Software Development :: Quality Assurance
30
32
31
33
[options]
32
- package_dir =
33
- =src
34
34
packages = find:
35
-
36
- install_requires =
35
+ package_dir =
36
+ =src
37
37
# We document the reasoning for using ranges here:
38
38
# http://flake8.pycqa.org/en/latest/faq.html#why-does-flake8-use-ranges-for-its-dependencies
39
39
# And in which releases we will update those ranges here:
40
40
# http://flake8.pycqa.org/en/latest/internal/releases.html#releasing-flake8
41
- pyflakes >= 2.4.0, < 2.5.0
42
- pycodestyle >= 2.8 .0, < 2.9 .0
43
- mccabe >= 0.6 .0, < 0.7 .0
44
- importlib-metadata<4.3 ; python_version<"3.8"
45
-
41
+ install_requires =
42
+ mccabe>=0.6 .0,<0.7 .0
43
+ pycodestyle>=2.8 .0,<2.9 .0
44
+ pyflakes>=2.4.0,<2.5.0
45
+ importlib-metadata<4.3 ; python_version<"3.8"
46
46
python_requires = >=3.6
47
47
48
48
[options.packages.find]
@@ -95,6 +95,9 @@ flake8.report =
95
95
quiet-filename = flake8.formatting.default:FilenameOnly
96
96
quiet-nothing = flake8.formatting.default:Nothing
97
97
98
+ [bdist_wheel]
99
+ universal = 1
100
+
98
101
[mypy]
99
102
check_untyped_defs = true
100
103
disallow_any_generics = true
0 commit comments