The classifiers are used by PyPI in case StGit is ever published there. The classifiers specify compatibility with CPython 2.4 through 2.7 along with PyPy.
Signed-off-by: Peter Grayson <[email protected]> --- setup.py | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e765e3d7..139f3958 100755 --- a/setup.py +++ b/setup.py @@ -51,6 +51,7 @@ def __run_setup(): author = 'Catalin Marinas', author_email = '[email protected]', url = 'http://www.procode.org/stgit/', + download_url = 'http://repo.or.cz/stgit.git', description = 'Stacked GIT', long_description = 'Push/pop utility on top of GIT', scripts = ['stg'], @@ -61,7 +62,25 @@ def __run_setup(): ('share/stgit/examples', ['examples/gitconfig']), ('share/stgit/contrib', ['contrib/stgbashprompt.sh']), ('share/stgit/completion', ['stgit-completion.bash']) - ]) + ], + classifiers = [ + 'Development Status :: 5 - Production/Stable', + 'Environment :: Console', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: GNU General Public License v2 (GPLv2)' + 'Natural Language :: English', + 'Operating System :: OS Independent', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.4', + 'Programming Language :: Python :: 2.5', + 'Programming Language :: Python :: 2.6', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: Implementation :: CPython', + 'Programming Language :: Python :: Implementation :: PyPy', + 'Topic :: Software Development :: Version Control', + ]) + # Check the minimum versions required __check_python_version() _______________________________________________ stgit-users mailing list [email protected] https://mail.gna.org/listinfo/stgit-users
