|
|
@ -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(), |
|
|
|
|
|
) |