2014-10-30 22:34:03 -07:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
2015-08-09 10:59:27 -07:00
|
|
|
|
2018-10-04 21:54:23 -07:00
|
|
|
VERSION = '1.2.7'
|
2015-08-09 10:59:27 -07:00
|
|
|
|
|
|
|
|
|
2014-10-30 22:34:03 -07:00
|
|
|
setup(
|
2016-06-10 11:21:53 -07:00
|
|
|
name='borgmatic',
|
2015-08-09 10:59:27 -07:00
|
|
|
version=VERSION,
|
2016-06-10 11:21:53 -07:00
|
|
|
description='A wrapper script for Borg backup software that creates and prunes backups',
|
2014-10-30 22:34:03 -07:00
|
|
|
author='Dan Helfman',
|
|
|
|
|
author_email='witten@torsion.org',
|
2016-06-10 11:21:53 -07:00
|
|
|
url='https://torsion.org/borgmatic',
|
2015-08-09 10:59:27 -07:00
|
|
|
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': [
|
2017-07-08 22:33:51 -07:00
|
|
|
'borgmatic = borgmatic.commands.borgmatic:main',
|
2017-07-09 11:48:24 -07:00
|
|
|
'upgrade-borgmatic-config = borgmatic.commands.convert_config:main',
|
2017-07-09 11:41:55 -07:00
|
|
|
'generate-borgmatic-config = borgmatic.commands.generate_config:main',
|
2015-07-18 18:35:29 -07:00
|
|
|
]
|
|
|
|
|
},
|
2018-09-29 22:45:00 -07:00
|
|
|
obsoletes=['atticmatic'],
|
|
|
|
|
install_requires=('pykwalify>=1.6.0,<14.06', 'ruamel.yaml>0.15.0,<0.16.0', 'setuptools'),
|
|
|
|
|
tests_require=('flexmock', 'pytest'),
|
2017-07-04 16:52:24 -07:00
|
|
|
include_package_data=True,
|
2014-10-30 22:34:03 -07:00
|
|
|
)
|