summaryrefslogtreecommitdiff
path: root/setup.cfg
blob: b6f7e7b65d7fcde872504146a27082ba93a9e0f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
[bdist_wheel]
# NOTE: "universal = 1" causes `bdist_wheel` to create a wheel that with the
# NOTE: tag "py2.py3" which implies (and tricks pip into thinking) that this
# NOTE: wheel contains Python 2 compatible code. This is not true and conflicts
# NOTE: with the "Requires-Python" field in the metadata that says that we only
# NOTE: support Python 3.6+.
# NOTE: We need to keep it at "0" which will produce wheels tagged with "py3"
# NOTE: when built under Python 3.
# Ref: https://github.com/pypa/packaging.python.org/issues/726
universal = 0

[metadata]
license_file = LICENSE.md
long_description = file:README.rst