borgmatic/setup.py

44 lines
1.1 KiB
Python
Raw Normal View History

2014-10-31 05:34:03 +00:00
from setuptools import setup, find_packages
2017-07-04 23:52:24 +00:00
VERSION = '1.1.0'
2014-10-31 05:34:03 +00:00
setup(
2016-06-10 18:21:53 +00:00
name='borgmatic',
version=VERSION,
2016-06-10 18:21:53 +00:00
description='A wrapper script for Borg backup software that creates and prunes backups',
2014-10-31 05:34:03 +00:00
author='Dan Helfman',
author_email='witten@torsion.org',
2016-06-10 18:21:53 +00:00
url='https://torsion.org/borgmatic',
download_url='https://torsion.org/hg/borgmatic/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': [
2016-06-10 18:21:53 +00:00
'borgmatic = borgmatic.command:main',
]
},
obsoletes=[
2016-06-10 18:21:53 +00:00
'atticmatic',
],
2017-07-04 23:52:24 +00:00
install_requires=(
'pykwalify',
'ruamel.yaml<=0.15',
'setuptools',
),
2014-11-18 05:57:44 +00:00
tests_require=(
'flexmock',
'pytest',
2017-07-04 23:52:24 +00:00
),
include_package_data=True,
2014-10-31 05:34:03 +00:00
)