2014-10-30 22:34:03 -07:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
2015-08-09 10:59:27 -07:00
|
|
|
|
2015-09-02 22:48:07 -07:00
|
|
|
VERSION = '0.1.6'
|
2015-08-09 10:59:27 -07:00
|
|
|
|
|
|
|
|
|
2014-10-30 22:34:03 -07:00
|
|
|
setup(
|
|
|
|
|
name='atticmatic',
|
2015-08-09 10:59:27 -07:00
|
|
|
version=VERSION,
|
2015-07-18 18:35:29 -07:00
|
|
|
description='A wrapper script for Attic/Borg backup software that creates and prunes backups',
|
2014-10-30 22:34:03 -07:00
|
|
|
author='Dan Helfman',
|
|
|
|
|
author_email='witten@torsion.org',
|
2015-08-09 10:59:27 -07:00
|
|
|
url='https://torsion.org/atticmatic',
|
|
|
|
|
download_url='https://torsion.org/hg/atticmatic/archive/%s.tar.gz' % VERSION,
|
|
|
|
|
classifiers=(
|
|
|
|
|
'Development Status :: 5 - Production/Stable',
|
|
|
|
|
'Environment :: Console',
|
|
|
|
|
'Intended Audience :: System Administrators',
|
|
|
|
|
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
|
|
|
|
|
'Programming Language :: Python',
|
|
|
|
|
'Topic :: Security :: Cryptography',
|
|
|
|
|
'Topic :: System :: Archiving :: Backup',
|
|
|
|
|
),
|
2014-10-30 22:34:03 -07:00
|
|
|
packages=find_packages(),
|
2015-07-18 18:35:29 -07:00
|
|
|
entry_points={
|
|
|
|
|
'console_scripts': [
|
|
|
|
|
'atticmatic = atticmatic.command:main',
|
|
|
|
|
'borgmatic = atticmatic.command:main',
|
|
|
|
|
]
|
|
|
|
|
},
|
2014-11-17 21:57:44 -08:00
|
|
|
tests_require=(
|
|
|
|
|
'flexmock',
|
|
|
|
|
'nose',
|
|
|
|
|
)
|
2014-10-30 22:34:03 -07:00
|
|
|
)
|