From beca47dccb09fecc38cf387852af92792bdfa082 Mon Sep 17 00:00:00 2001 From: Jakub Stasiak Date: Fri, 19 Jun 2020 00:58:25 +0200 Subject: [PATCH] Revert "- PKG-INFO metadata generation seems to be broken (lists maintainer as author on PyPI - mutually exclusive?)" More than a year after the original commit this has been fixed in setuptools[1] so we can go back to the way it was intended to be. This reverts commit 34ff560464757cfb9dd59cabae9cb5d099d32c87. [1] https://github.com/pypa/setuptools/pull/1294 --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4fea5075..80ce8c04 100644 --- a/setup.py +++ b/setup.py @@ -155,8 +155,10 @@ def main(): sys.stdout.write("To install, run 'python setup.py install'\n\n") setup_options = dict( - author='David P. D. Moss, Stefan Nordhausen et al', + author='David P. D. Moss et al', author_email='drkjam@gmail.com', + maintainer='Stefan Nordhausen', + maintainer_email='stefan.nordhausen@immobilienscout24.de', classifiers=classifiers, description='A network address manipulation library for Python', download_url='https://pypi.org/project/netaddr/',