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