commit 62e12c9cf1b26d0f1744441fd6049c465b0ea59b Author: Raphael Roberts Date: Sat Apr 24 19:52:25 2021 -0500 Added setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..7656a90 --- /dev/null +++ b/setup.py @@ -0,0 +1,14 @@ +from setuptools import setup, find_packages + +with open("requirements.txt") as file: + INSTALL_REQUIRES = file.read().rstrip().split("\n") + + setup( + name="panera-shifts-gcal-backend", + version="1.0", + description="Sync shifts from panera to google calendar", + install_requires=INSTALL_REQUIRES, + author="Raphael Roberts", + author_email="raphael.roberts48@gmail.com", + packages=find_packages(), + )