Skip to content

Commit 960cf8c

Browse files
committedOct 11, 2021
rerun setup-cfg-fmt (and restore comments)
1 parent d7baba5 commit 960cf8c

File tree

1 file changed

+18
-15
lines changed

1 file changed

+18
-15
lines changed
 

‎setup.cfg

+18-15
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,16 @@
1-
[bdist_wheel]
2-
universal = 1
3-
41
[metadata]
52
name = flake8
63
version = attr: flake8.__version__
7-
license = MIT
8-
license_file = LICENSE
94
description = the modular source code checker: pep8 pyflakes and co
105
long_description = file: README.rst
6+
long_description_content_type = text/x-rst
7+
url = https://github.com/pycqa/flake8
118
author = Tarek Ziade
129
author_email = tarek@ziade.org
1310
maintainer = Ian Stapleton Cordasco
1411
maintainer_email = graffatcolmingov@gmail.com
15-
url = https://github.com/pycqa/flake8
12+
license = MIT
13+
license_file = LICENSE
1614
classifiers =
1715
Development Status :: 5 - Production/Stable
1816
Environment :: Console
@@ -21,28 +19,30 @@ classifiers =
2119
License :: OSI Approved :: MIT License
2220
Programming Language :: Python
2321
Programming Language :: Python :: 3
22+
Programming Language :: Python :: 3 :: Only
2423
Programming Language :: Python :: 3.6
2524
Programming Language :: Python :: 3.7
2625
Programming Language :: Python :: 3.8
2726
Programming Language :: Python :: 3.9
27+
Programming Language :: Python :: 3.10
28+
Programming Language :: Python :: Implementation :: CPython
29+
Programming Language :: Python :: Implementation :: PyPy
2830
Topic :: Software Development :: Libraries :: Python Modules
2931
Topic :: Software Development :: Quality Assurance
3032

3133
[options]
32-
package_dir=
33-
=src
3434
packages = find:
35-
36-
install_requires=
35+
package_dir =
36+
=src
3737
# We document the reasoning for using ranges here:
3838
# http://flake8.pycqa.org/en/latest/faq.html#why-does-flake8-use-ranges-for-its-dependencies
3939
# And in which releases we will update those ranges here:
4040
# 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"
4646
python_requires = >=3.6
4747

4848
[options.packages.find]
@@ -95,6 +95,9 @@ flake8.report =
9595
quiet-filename = flake8.formatting.default:FilenameOnly
9696
quiet-nothing = flake8.formatting.default:Nothing
9797

98+
[bdist_wheel]
99+
universal = 1
100+
98101
[mypy]
99102
check_untyped_defs = true
100103
disallow_any_generics = true

0 commit comments

Comments
 (0)
Please sign in to comment.