Browse Source

Added setup.py

master
Raphael Roberts 5 years ago
parent
commit
af98d7f95f
  1. 14
      setup.py

14
setup.py

@ -0,0 +1,14 @@
from setuptools import setup, find_packages
with open("requirements.txt") as file:
INSTALL_REQUIRES = file.read().rstrip().split("\n")
setup(
name="tibi-hardlinks",
version="1.0",
description="Transform list of TitaniumBackup backups into structured hardlinks",
install_requires=INSTALL_REQUIRES,
author="Raphael Roberts",
author_email="raphael.roberts48@gmail.com",
packages=find_packages(),
)
Loading…
Cancel
Save