From 09d4227dc3edb6ea5eb52f3c0d22980ad91d282a Mon Sep 17 00:00:00 2001 From: Stian Soiland-Reyes Date: Tue, 30 Jan 2018 11:41:32 +0000 Subject: [PATCH] Explicit License: no License classifier Workaround for pypa/pypi-legacy#564 as "Apache License, Version 2.0" is not yet (since 2004?) recognized. --- setup.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 39d2bd5..3643b20 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ setup( name = 'arcp', packages = find_packages(exclude=['contrib', 'docs', 'tests']), # Required - version = '0.1.0.dev0', + version = '0.1.0.dev1', description = 'arcp (Archive and Package) URI parser and generator', long_description=long_description, author = 'Stian Soiland-Reyes', @@ -48,13 +48,14 @@ 'Topic :: Software Development :: Build Tools', # 'License :: OSI Approved :: Apache Software License', # https://github.com/pypa/pypi-legacy/issues/564 - 'License :: OSI Approved :: Apache License, Version 2.0 (Apache-2.0)', + #'License :: OSI Approved', + # 'License :: OSI Approved :: Apache License, Version 2.0 (Apache-2.0)', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.6', 'Topic :: Internet', - 'Topic :: Internet :: WWW/HTTP' + 'Topic :: Internet :: WWW/HTTP', 'Topic :: System :: Archiving', 'Topic :: System :: Archiving :: Packaging', ], -) \ No newline at end of file +)