diff --git a/setup.py b/setup.py index 20a43147c57a4a86fbfad37761f18be0b8d67910..bd0d5972ec220a84ba9bb6f32f68a486ca27659c 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ #!/usr/bin/env python import codecs import os.path -from distutils.core import setup +from setuptools import setup from versiontag import get_version, cache_git_tag packages = [ @@ -21,9 +21,20 @@ setup( version=get_version(pypi=True), description='Simple git tag based version numbers', long_description=read(fpath('README.rst')), + classifiers=[ + 'Development Status :: 5 - Production/Stable', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: ISC License (ISCL)', + 'Operating System :: Unix', + 'Operating System :: MacOS :: MacOS X', + 'Programming Language :: Python', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + ], author='Craig Weber', author_email='crgwbr@gmail.com', - url='https://github.com/crgwbr/python-versiontag', + url='https://github.com/thelabnyc/python-versiontag', packages=packages, license='LICENSE.md' )