generated from rexzhang/python-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
20 lines (18 loc) · 854 Bytes
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[metadata]
# This includes the license file(s) in the wheel.
# https://wheel.readthedocs.io/en/stable/user_guide.html#including-license-files-in-the-generated-wheel-file
license_files = LICENSE
[bdist_wheel]
# This flag says to generate wheels that support both Python 2 and Python
# 3. If your code will not run unchanged on both Python 2 and 3, you will
# need to generate separate wheels for each Python version that you
# support. Removing this line (or setting universal to 0) will prevent
# bdist_wheel from trying to make a universal wheel. For more see:
# https://packaging.python.org/guides/distributing-packages-using-setuptools/#wheels
universal = 1
[flake8]
# https://black.readthedocs.io/en/stable/the_black_code_style.html
# W293 blank line contains whitespace
# E203 Whitespace before ':'
max-line-length = 88
extend-ignore = E203, W293