Skip to content

Commit d65bd3e

Browse files
committed
add trove classifiers
1 parent bdcfb26 commit d65bd3e

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

setup.py

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,27 @@
4343
# Extract name and e-mail ("Firstname Lastname <[email protected]>")
4444
AUTHOR, EMAIL = re.match(r'(.*) <(.*)>', AUTHOR_EMAIL).groups()
4545

46+
CLASSIFIERS = [
47+
'Development Status :: 5 - Production/Stable',
48+
'Environment :: Console',
49+
'Intended Audience :: Developers',
50+
'License :: OSI Approved :: BSD License',
51+
'Operating System :: OS Independent',
52+
'Programming Language :: Python',
53+
'Programming Language :: Python :: 2',
54+
'Programming Language :: Python :: 2.6',
55+
'Programming Language :: Python :: 2.7',
56+
'Programming Language :: Python :: 3',
57+
'Programming Language :: Python :: 3.2',
58+
'Programming Language :: Python :: 3.3',
59+
'Programming Language :: Python :: 3.4',
60+
'Programming Language :: Python :: Implementation :: CPython',
61+
'Programming Language :: Python :: Implementation :: PyPy',
62+
'Topic :: Software Development :: Libraries',
63+
'Topic :: Utilities',
64+
]
65+
66+
4667
setup(name=PACKAGE,
4768
version=VERSION,
4869
description=DESCRIPTION,
@@ -58,5 +79,6 @@
5879
'jsondiff = jsondiff:main',
5980
'jsonpatch = jsonpatch:main',
6081
]},
82+
classifiers=CLASSIFIERS,
6183
**OPTIONS
6284
)

0 commit comments

Comments
 (0)