diff --git a/panera_sync/__init__.py b/panera_shifts/__init__.py similarity index 100% rename from panera_sync/__init__.py rename to panera_shifts/__init__.py diff --git a/panera_sync/fill_form.py b/panera_shifts/fill_form.py similarity index 100% rename from panera_sync/fill_form.py rename to panera_shifts/fill_form.py diff --git a/panera_sync/login.py b/panera_shifts/login.py similarity index 100% rename from panera_sync/login.py rename to panera_shifts/login.py diff --git a/panera_sync/oauth_required.py b/panera_shifts/oauth_required.py similarity index 100% rename from panera_sync/oauth_required.py rename to panera_shifts/oauth_required.py diff --git a/panera_sync/saml_check.py b/panera_shifts/saml_check.py similarity index 100% rename from panera_sync/saml_check.py rename to panera_shifts/saml_check.py diff --git a/panera_sync/user.py b/panera_shifts/user.py similarity index 100% rename from panera_sync/user.py rename to panera_shifts/user.py diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..828889b --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +requests +lxml diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..37a8113 --- /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", + version="1.0", + description="Get all shifts from panera, for use with syncing to a calendar backend", + install_requires=INSTALL_REQUIRES, + author="Raphael Roberts", + author_email="raphael.roberts48@gmail.com", + packages=find_packages(), + )