2014-10-31 06:34:03 +01:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='atticmatic',
|
2015-07-19 08:48:58 +02:00
|
|
|
version='0.1.1',
|
2015-07-19 03:35:29 +02:00
|
|
|
description='A wrapper script for Attic/Borg 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(),
|
2015-07-19 03:35:29 +02:00
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
'atticmatic = atticmatic.command:main',
|
|
|
|
'borgmatic = atticmatic.command:main',
|
|
|
|
]
|
|
|
|
},
|
2014-11-18 06:57:44 +01:00
|
|
|
tests_require=(
|
|
|
|
'flexmock',
|
|
|
|
'nose',
|
|
|
|
)
|
2014-10-31 06:34:03 +01:00
|
|
|
)
|