resticbackup/setup.py

20 lines
473 B
Python
Raw Permalink Normal View History

2022-12-08 23:02:17 -08:00
from setuptools import setup
2023-07-26 13:43:03 -07:00
from resticbackup import __version__
2022-12-08 23:02:17 -08:00
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)