diff --git a/setup.py b/setup.py deleted file mode 100644 index 3a40013..0000000 --- a/setup.py +++ /dev/null @@ -1,28 +0,0 @@ -from setuptools import setup - - -setup( - name='setuptools-git-version', - version='1.0.4', - url='https://github.com/pyfidelity/setuptools-git-version', - author='pyfidelity UG', - author_email='mail@pyfidelity.com', - description='Automatically set package version from Git.', - license='http://opensource.org/licenses/MIT', - classifiers=[ - 'Framework :: Setuptools Plugin', - 'Intended Audience :: Developers', - 'License :: OSI Approved :: MIT License', - 'Programming Language :: Python', - ], - py_modules=['setuptools_git_version'], - install_requires=[ - 'setuptools >= 8.0', - ], - entry_points=""" - [distutils.setup_keywords] - version_format = setuptools_git_version:validate_version_format - [console_scripts] - setuptools-git-version = setuptools_git_version:get_git_version - """, -)