Browse Source

Renamed module to panera_shifts and added setup.py

master v1.0
Raphael Roberts 5 years ago
parent
commit
d9d79a52fc
  1. 0
      panera_shifts/__init__.py
  2. 0
      panera_shifts/fill_form.py
  3. 0
      panera_shifts/login.py
  4. 0
      panera_shifts/oauth_required.py
  5. 0
      panera_shifts/saml_check.py
  6. 0
      panera_shifts/user.py
  7. 2
      requirements.txt
  8. 14
      setup.py

panera_sync/__init__.py → panera_shifts/__init__.py

panera_sync/fill_form.py → panera_shifts/fill_form.py

panera_sync/login.py → panera_shifts/login.py

panera_sync/oauth_required.py → panera_shifts/oauth_required.py

panera_sync/saml_check.py → panera_shifts/saml_check.py

panera_sync/user.py → panera_shifts/user.py

2
requirements.txt

@ -0,0 +1,2 @@
requests
lxml

14
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(),
)
Loading…
Cancel
Save