|
25 | 25 | # Extract name and e-mail ("Firstname Lastname <[email protected]>")
|
26 | 26 | AUTHOR, EMAIL = re.match(r'(.*) <(.*)>', AUTHOR_EMAIL).groups()
|
27 | 27 |
|
| 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 | + |
28 | 48 | setup(name=PACKAGE,
|
29 | 49 | version=VERSION,
|
30 | 50 | description=DESCRIPTION,
|
|
38 | 58 | 'console_scripts': [
|
39 | 59 | 'jsonpointer = jsonpointer:main',
|
40 | 60 | ]},
|
| 61 | + classifiers=CLASSIFIERS, |
41 | 62 | )
|
0 commit comments