From 29ea35d0f4c415a8a390a28fa41c5fc3bc64df0a Mon Sep 17 00:00:00 2001 From: Federico Caselli Date: Tue, 26 Oct 2021 21:09:34 +0200 Subject: Use pep517 to build --- MANIFEST.in | 2 +- pyproject.toml | 6 ++++++ setup.cfg | 3 --- 3 files changed, 7 insertions(+), 4 deletions(-) create mode 100644 pyproject.toml diff --git a/MANIFEST.in b/MANIFEST.in index d071265..3bdb9ab 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1 +1 @@ -include README.rst LICENSE mimeparse_test.py testdata.json +include README.rst LICENSE mimeparse_test.py testdata.json pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..c4ef621 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,6 @@ +[build-system] + build-backend = "setuptools.build_meta" + requires = [ + "setuptools>=47", + "wheel>=0.34", + ] diff --git a/setup.cfg b/setup.cfg index 60afdbe..dc7d900 100644 --- a/setup.cfg +++ b/setup.cfg @@ -38,6 +38,3 @@ py_modules = mimeparse install_requires = tests_require = pytest - -[bdist_wheel] -universal = 1 -- cgit v1.2.1