borgmatic/setup.py

16 lines
429 B
Python
Raw Normal View History

2014-10-31 05:34:03 +00:00
from setuptools import setup, find_packages
setup(
name='atticmatic',
version='0.0.7',
2014-12-02 04:36:43 +00:00
description='A wrapper script for Attic backup software that creates and prunes backups',
2014-10-31 05:34:03 +00:00
author='Dan Helfman',
author_email='witten@torsion.org',
packages=find_packages(),
entry_points={'console_scripts': ['atticmatic = atticmatic.command:main']},
2014-11-18 05:57:44 +00:00
tests_require=(
'flexmock',
'nose',
)
2014-10-31 05:34:03 +00:00
)