2014-10-30 22:34:03 -07:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
2015-08-09 10:59:27 -07:00
|
|
|
|
2018-06-17 15:26:53 -07:00
|
|
|
VERSION = '1.2.1.dev0'
|
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
|
|
|
]
|
|
|
|
},
|
2016-06-10 12:34:49 -07:00
|
|
|
obsoletes=[
|
2016-06-10 11:21:53 -07:00
|
|
|
'atticmatic',
|
2016-06-10 12:34:49 -07:00
|
|
|
],
|
2017-07-04 16:52:24 -07:00
|
|
|
install_requires=(
|
2017-11-26 10:30:31 -08:00
|
|
|
'pykwalify>=1.6.0',
|
2018-07-22 11:25:06 -07:00
|
|
|
'ruamel.yaml>0.15.0,<0.16.0',
|
2017-07-04 16:52:24 -07:00
|
|
|
'setuptools',
|
|
|
|
),
|
2014-11-17 21:57:44 -08:00
|
|
|
tests_require=(
|
|
|
|
'flexmock',
|
2016-04-10 15:59:36 -07:00
|
|
|
'pytest',
|
2017-07-04 16:52:24 -07:00
|
|
|
),
|
|
|
|
include_package_data=True,
|
2014-10-30 22:34:03 -07:00
|
|
|
)
|