Skip to content

Commit 32f6363

Browse files
committed
add trove classifiers (fixes #6)
1 parent 6e20165 commit 32f6363

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

setup.py

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,26 @@
2525
# Extract name and e-mail ("Firstname Lastname <[email protected]>")
2626
AUTHOR, EMAIL = re.match(r'(.*) <(.*)>', AUTHOR_EMAIL).groups()
2727

28+
CLASSIFIERS = [
29+
'Development Status :: 5 - Production/Stable',
30+
'Environment :: Console',
31+
'Intended Audience :: Developers',
32+
'License :: OSI Approved :: BSD License',
33+
'Operating System :: OS Independent',
34+
'Programming Language :: Python',
35+
'Programming Language :: Python :: 2',
36+
'Programming Language :: Python :: 2.6',
37+
'Programming Language :: Python :: 2.7',
38+
'Programming Language :: Python :: 3',
39+
'Programming Language :: Python :: 3.2',
40+
'Programming Language :: Python :: 3.3',
41+
'Programming Language :: Python :: 3.4',
42+
'Programming Language :: Python :: Implementation :: CPython',
43+
'Programming Language :: Python :: Implementation :: PyPy',
44+
'Topic :: Software Development :: Libraries',
45+
'Topic :: Utilities',
46+
]
47+
2848
setup(name=PACKAGE,
2949
version=VERSION,
3050
description=DESCRIPTION,
@@ -38,4 +58,5 @@
3858
'console_scripts': [
3959
'jsonpointer = jsonpointer:main',
4060
]},
61+
classifiers=CLASSIFIERS,
4162
)

0 commit comments

Comments
 (0)