Getting rid of license variable

This commit is contained in:
Alex Epstein 2017-08-28 21:50:14 -04:00
parent 56cbf5ff3b
commit f3cc1ef6c8

View File

@ -13,7 +13,6 @@ DESCRIPTION = 'My short description for my project. '
URL = 'https://github.com/me/myproject' URL = 'https://github.com/me/myproject'
EMAIL = 'me@example.com' EMAIL = 'me@example.com'
AUTHOR = 'Awesome Soul' AUTHOR = 'Awesome Soul'
LICENSE = "ISC"
here = os.path.abspath(os.path.dirname(__file__)) here = os.path.abspath(os.path.dirname(__file__))
@ -55,7 +54,7 @@ setup(
# }, # },
install_requires=required, install_requires=required,
include_package_data=True, include_package_data=True,
license=LICENSE, license='ISC',
classifiers=[ classifiers=[
'License :: OSI Approved :: ISC License', 'License :: OSI Approved :: ISC License',
'Programming Language :: Python', 'Programming Language :: Python',