from setuptools import setup, find_packages setup( name="crossfit_booker", version="0.1", packages=find_packages(where="src"), package_dir={"": "src"}, install_requires=[ "requests", "python-dotenv", "pytz", "python-dateutil", ], )