From 950ec62765174adace3a6dfd10443f92dc3e42af Mon Sep 17 00:00:00 2001 From: cruz101-hub <85043633+cruz101-hub@users.noreply.github.com> Date: Mon, 19 Jul 2021 05:12:09 +0100 Subject: [PATCH] Delete setup.py --- setup.py | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 setup.py 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 - """, -)