2014-10-31 06:34:03 +01:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
2015-08-09 19:59:27 +02:00
|
|
|
|
2016-02-13 19:43:31 +01:00
|
|
|
VERSION = '0.1.8.dev0'
|
2015-08-09 19:59:27 +02:00
|
|
|
|
|
|
|
|
2014-10-31 06:34:03 +01:00
|
|
|
setup(
|
|
|
|
name='atticmatic',
|
2015-08-09 19:59:27 +02:00
|
|
|
version=VERSION,
|
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',
|
2015-08-09 19:59:27 +02: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-31 06:34:03 +01:00
|
|
|
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',
|
2016-04-11 00:59:36 +02:00
|
|
|
'pytest',
|
2014-11-18 06:57:44 +01:00
|
|
|
)
|
2014-10-31 06:34:03 +01:00
|
|
|
)
|