From d5199bd503618559811dc0c99e02bf89e322b80e Mon Sep 17 00:00:00 2001 From: dgelessus Date: Sun, 19 Apr 2020 16:20:07 +0200 Subject: [PATCH] Replace setup.cfg metadata license_file with license_files license_file has been deprecated in wheel 0.32.0 in favor of license_files. --- setup.cfg | 5 +++-- tox.ini | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index f36a107..d2added 100644 --- a/setup.cfg +++ b/setup.cfg @@ -25,7 +25,8 @@ classifiers = Programming Language :: Python :: 3.6 Programming Language :: Python :: 3.7 license = MIT -license_file = LICENSE +license_files = + LICENSE description = A pure Python, cross-platform library/tool for reading Macintosh resource data, as stored in resource forks and ``.rsrc`` files long_description = file: README.rst long_description_content_type = text/x-rst @@ -40,7 +41,7 @@ keywords = [options] setup_requires = - setuptools>=39.2.0 + setuptools>=42.0.0 python_requires = >=3.6 packages = find: diff --git a/tox.ini b/tox.ini index 5b390d0..dafe718 100644 --- a/tox.ini +++ b/tox.ini @@ -20,7 +20,7 @@ commands = mypy [testenv:package] deps = twine - wheel + wheel >= 0.32.0 commands = python setup.py sdist bdist_wheel