borgmatic/setup.py

36 lines
1.0 KiB
Python
Raw Normal View History

2014-10-31 05:34:03 +00:00
from setuptools import setup, find_packages
2016-04-10 23:01:05 +00:00
VERSION = '0.1.8'
2014-10-31 05:34:03 +00:00
setup(
name='atticmatic',
version=VERSION,
description='A wrapper script for Attic/Borg backup software that creates and prunes backups',
2014-10-31 05:34:03 +00:00
author='Dan Helfman',
author_email='witten@torsion.org',
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 05:34:03 +00:00
packages=find_packages(),
entry_points={
'console_scripts': [
'atticmatic = atticmatic.command:main',
'borgmatic = atticmatic.command:main',
]
},
2014-11-18 05:57:44 +00:00
tests_require=(
'flexmock',
'pytest',
2014-11-18 05:57:44 +00:00
)
2014-10-31 05:34:03 +00:00
)