from setuptools import setup, find_packages with open("requirements.txt", "r") as f: REQUIREMENTS = f.read() setup(
name="teach_auto",
packages=find_packages(), install_requires=REQUIREMENTS,
entry_points={"console_scripts": ["teach-auto=teach_auto.cli:cli"]},
)