resticbackup/setup.py

20 lines
473 B
Python

from setuptools import setup
from resticbackup import __version__
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)