from setuptools import find_packages, setup 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(), )