resticbackup/setup.py

21 lines
459 B
Python

from setuptools import setup
__version__ = "0.0.0"
setup(name='resticbackup',
version=__version__,
description='Wrapper around restic for automated backups',
url='',
author='dpedu',
author_email='dave@davepedu.com',
packages=['resticbackup'],
install_requires=[],
entry_points={
"console_scripts": [
"resticbackup = resticbackup.cli:main",
]
},
zip_safe=False)