Merge pull request #2142 from MinchinWeb/patch-1

Pelican trove classifier now on PyPI
This commit is contained in:
Justin Mayer 2017-07-21 10:34:18 -07:00 committed by GitHub
commit 42b205d75c

View file

@ -53,19 +53,20 @@ setup(
install_requires=requires, install_requires=requires,
entry_points=entry_points, entry_points=entry_points,
classifiers=[ classifiers=[
'Development Status :: 5 - Production/Stable', 'Development Status :: 5 - Production/Stable',
'Environment :: Console', 'Environment :: Console',
'License :: OSI Approved :: GNU Affero General Public License v3', 'Framework :: Pelican',
'Operating System :: OS Independent', 'License :: OSI Approved :: GNU Affero General Public License v3',
'Programming Language :: Python :: 2', 'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.5',
'Topic :: Internet :: WWW/HTTP', 'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
], ],
test_suite='pelican.tests', test_suite='pelican.tests',
) )