You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
550 B

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
  1. from setuptools import setup
  2. with open("requirements.txt") as file:
  3. INSTALL_REQUIRES = file.read().rstrip().split("\n")
  4. setup(
  5. name="tibi-hardlinks",
  6. version="2.2",
  7. description="Transform list of TitaniumBackup backups into structured hardlinks",
  8. install_requires=INSTALL_REQUIRES,
  9. author="Raphael Roberts",
  10. author_email="raphael.roberts48@gmail.com",
  11. packages=["tibi_hardlinks"],
  12. entry_points={"console_scripts": ["tibi-hardlinks = tibi_hardlinks:main"]},
  13. package_data={"tibi_hardlinks": ["config.yml"]},
  14. )