Skip to content

Commit

Permalink
Explicit License: no License classifier
Browse files Browse the repository at this point in the history
Workaround for pypi/legacy#564 as "Apache License, Version 2.0" is
not yet (since 2004?) recognized.
  • Loading branch information
stain committed Jan 30, 2018
1 parent a4173bd commit 09d4227
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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',
],

)
)

0 comments on commit 09d4227

Please sign in to comment.