|
43 | 43 | # Extract name and e-mail ("Firstname Lastname <[email protected]>")
|
44 | 44 | AUTHOR, EMAIL = re.match(r'(.*) <(.*)>', AUTHOR_EMAIL).groups()
|
45 | 45 |
|
| 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 | + |
46 | 67 | setup(name=PACKAGE,
|
47 | 68 | version=VERSION,
|
48 | 69 | description=DESCRIPTION,
|
|
58 | 79 | 'jsondiff = jsondiff:main',
|
59 | 80 | 'jsonpatch = jsonpatch:main',
|
60 | 81 | ]},
|
| 82 | + classifiers=CLASSIFIERS, |
61 | 83 | **OPTIONS
|
62 | 84 | )
|
0 commit comments