summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPrashanth Pai <ppai@redhat.com>2016-08-16 16:02:02 +0530
committerPrashanth Pai <ppai@redhat.com>2016-08-16 16:02:02 +0530
commitd46e4716fcfc5eefe9b3020e33c570d895203d14 (patch)
treed3952da9d6b9ca6d159adffc28540bd868e9ac59
parent655b0d2793386d2059b9c682e931035a83619917 (diff)
Fix classifiers field in setup.pyv1.0
Commas were missing and during upload to pypi, it used to fail with: Server response (400): Invalid classifier Change-Id: Id3123bb0cc1705fc5f282c7da07b553fa1971455 Signed-off-by: Prashanth Pai <ppai@redhat.com>
-rw-r--r--setup.py20
1 files changed, 10 insertions, 10 deletions
diff --git a/setup.py b/setup.py
index 26871d7..90df5a2 100644
--- a/setup.py
+++ b/setup.py
@@ -40,15 +40,15 @@ setup(
packages=find_packages(exclude=['test*']),
test_suite='nose.collector',
classifiers=[
- 'Development Status :: 5 - Production/Stable'
- 'Intended Audience :: Developers'
- 'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)' # noqa
- 'License :: OSI Approved :: GNU General Public License v2 (GPLv2)'
- 'Operating System :: POSIX :: Linux'
- 'Programming Language :: Python'
- 'Programming Language :: Python :: 2'
- 'Programming Language :: Python :: 2.6'
- 'Programming Language :: Python :: 2.7'
- 'Topic :: System :: Filesystems'
+ 'Development Status :: 5 - Production/Stable',
+ 'Intended Audience :: Developers',
+ 'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)', # noqa
+ 'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
+ 'Operating System :: POSIX :: Linux',
+ 'Programming Language :: Python',
+ 'Programming Language :: Python :: 2',
+ 'Programming Language :: Python :: 2.6',
+ 'Programming Language :: Python :: 2.7',
+ 'Topic :: System :: Filesystems',
],
)