From 651ccbcddfbaef74de2e5a2b247686e525ebe017 Mon Sep 17 00:00:00 2001 From: MinchinWeb Date: Thu, 20 Apr 2017 13:40:19 -0600 Subject: [PATCH 1/2] Pelican trove classifier now on PyPI https://github.com/pypa/warehouse/issues/1650 (now sorted alphabetically) --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index f3a0ebcb..c26f1e71 100755 --- a/setup.py +++ b/setup.py @@ -55,6 +55,7 @@ setup( classifiers=[ 'Development Status :: 5 - Production/Stable', 'Environment :: Console', + 'Framework :: Pelican', 'License :: OSI Approved :: GNU Affero General Public License v3', 'Operating System :: OS Independent', 'Programming Language :: Python :: 2', From 24c41195a669070d0970ad5d62f3fa5887902900 Mon Sep 17 00:00:00 2001 From: MinchinWeb Date: Wed, 26 Apr 2017 10:34:47 -0600 Subject: [PATCH 2/2] Use 4-space indentation --- setup.py | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/setup.py b/setup.py index c26f1e71..be038971 100755 --- a/setup.py +++ b/setup.py @@ -53,20 +53,20 @@ setup( install_requires=requires, entry_points=entry_points, classifiers=[ - 'Development Status :: 5 - Production/Stable', - 'Environment :: Console', - 'Framework :: Pelican', - 'License :: OSI Approved :: GNU Affero General Public License v3', - 'Operating System :: OS Independent', - 'Programming Language :: Python :: 2', - 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.3', - 'Programming Language :: Python :: 3.4', - 'Programming Language :: Python :: 3.5', - 'Programming Language :: Python :: 3.6', - 'Topic :: Internet :: WWW/HTTP', - 'Topic :: Software Development :: Libraries :: Python Modules', + 'Development Status :: 5 - Production/Stable', + 'Environment :: Console', + 'Framework :: Pelican', + 'License :: OSI Approved :: GNU Affero General Public License v3', + 'Operating System :: OS Independent', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'Topic :: Internet :: WWW/HTTP', + 'Topic :: Software Development :: Libraries :: Python Modules', ], test_suite='pelican.tests', )