Get rid of packaging sections in setup.cfg

License files are automatically collected by pep517.
This commit is contained in:
Hynek Schlawack 2019-10-16 20:04:20 +02:00
parent bb7b1f4650
commit b7814c6b1f
2 changed files with 1 additions and 9 deletions

View File

@ -1,12 +1,3 @@
[bdist_wheel]
universal = 1
[metadata]
# ensure LICENSE is included in wheel metadata
license_file = LICENSE
[tool:pytest]
minversion = 3.0
strict = true

View File

@ -124,4 +124,5 @@ if __name__ == "__main__":
install_requires=INSTALL_REQUIRES,
extras_require=EXTRAS_REQUIRE,
include_package_data=True,
options={"bdist_wheel": {"universal": "1"}},
)