From 9a04ab74010fb2bc32ceda285252e212375173de Mon Sep 17 00:00:00 2001 From: Nico Gonzalez Date: Fri, 29 May 2020 21:24:28 -0400 Subject: [PATCH] Remove setup.py --- setup.py | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 setup.py diff --git a/setup.py b/setup.py deleted file mode 100644 index 42dd7d4..0000000 --- a/setup.py +++ /dev/null @@ -1,20 +0,0 @@ -from setuptools import setup - -setup( - name="Demeter", - version="1.1.0", - author="Nico Gonzalez", - author_email="NicoG96@gmail.com", - packages=["demeter"], - license="LICENSE", - url="https://github.com/NicoG96/Demeter", - description="Automate the branching stuff with Python!", - long_description=open("README.md").read(), - install_requires=[ - "termcolor", - "pyfiglet", - "GitPython", - "pygithub", - 'requests' - ], -)