from setuptools import setup with open("requirements.txt") as file: INSTALL_REQUIRES = file.read().rstrip().split("\n") setup( name="tibi-hardlinks", version="2.2", description="Transform list of TitaniumBackup backups into structured hardlinks", install_requires=INSTALL_REQUIRES, author="Raphael Roberts", author_email="raphael.roberts48@gmail.com", packages=["tibi_hardlinks"], entry_points={"console_scripts": ["tibi-hardlinks = tibi_hardlinks:main"]}, package_data={"tibi_hardlinks": ["config.yml"]}, )