borgmatic/setup.py

15 lines
429 B
Python
Raw Normal View History

2014-10-30 22:34:03 -07:00
from setuptools import setup, find_packages
setup(
name='atticmatic',
2015-03-15 09:52:40 -07:00
version='0.0.4',
2014-12-01 20:36:43 -08:00
description='A wrapper script for Attic backup software that creates and prunes backups',
2014-10-30 22:34:03 -07:00
author='Dan Helfman',
author_email='witten@torsion.org',
packages=find_packages(),
entry_points={'console_scripts': ['atticmatic = atticmatic.command:main']},
2014-11-17 21:57:44 -08:00
tests_require=(
'flexmock',
'nose',
)
2014-10-30 22:34:03 -07:00
)