2014-10-31 06:34:03 +01:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
2015-08-09 19:59:27 +02:00
|
|
|
|
2019-05-11 23:05:16 +02:00
|
|
|
VERSION = '1.3.3'
|
2015-08-09 19:59:27 +02:00
|
|
|
|
|
|
|
|
2014-10-31 06:34:03 +01:00
|
|
|
setup(
|
2016-06-10 20:21:53 +02:00
|
|
|
name='borgmatic',
|
2015-08-09 19:59:27 +02:00
|
|
|
version=VERSION,
|
2016-06-10 20:21:53 +02:00
|
|
|
description='A wrapper script for Borg backup software that creates and prunes backups',
|
2014-10-31 06:34:03 +01:00
|
|
|
author='Dan Helfman',
|
|
|
|
author_email='witten@torsion.org',
|
2016-06-10 20:21:53 +02:00
|
|
|
url='https://torsion.org/borgmatic',
|
2018-12-10 00:49:58 +01:00
|
|
|
classifiers=[
|
2015-08-09 19:59:27 +02:00
|
|
|
'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',
|
2018-12-10 00:49:58 +01:00
|
|
|
],
|
2019-02-08 19:22:56 +01:00
|
|
|
packages=find_packages(exclude=['tests*']),
|
2015-07-19 03:35:29 +02:00
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
2017-07-09 07:33:51 +02:00
|
|
|
'borgmatic = borgmatic.commands.borgmatic:main',
|
2017-07-09 20:48:24 +02:00
|
|
|
'upgrade-borgmatic-config = borgmatic.commands.convert_config:main',
|
2017-07-09 20:41:55 +02:00
|
|
|
'generate-borgmatic-config = borgmatic.commands.generate_config:main',
|
2019-05-10 00:10:28 +02:00
|
|
|
'validate-borgmatic-config = borgmatic.commands.validate_config:main',
|
2015-07-19 03:35:29 +02:00
|
|
|
]
|
|
|
|
},
|
2018-09-30 07:45:00 +02:00
|
|
|
obsoletes=['atticmatic'],
|
|
|
|
install_requires=('pykwalify>=1.6.0,<14.06', 'ruamel.yaml>0.15.0,<0.16.0', 'setuptools'),
|
2017-07-05 01:52:24 +02:00
|
|
|
include_package_data=True,
|
2014-10-31 06:34:03 +01:00
|
|
|
)
|