2019-05-13 23:39:10 +02:00
|
|
|
from setuptools import find_packages, setup
|
2015-08-09 10:59:27 -07:00
|
|
|
|
2023-05-17 08:48:54 -07:00
|
|
|
VERSION = '1.7.14.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,
|
2019-05-26 13:36:53 -07:00
|
|
|
description='Simple, configuration-driven backup software for servers and workstations',
|
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',
|
2018-12-09 15:49:58 -08:00
|
|
|
classifiers=[
|
2015-08-09 10:59:27 -07: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-09 15:49:58 -08:00
|
|
|
],
|
2019-02-08 19:22:56 +01:00
|
|
|
packages=find_packages(exclude=['tests*']),
|
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',
|
2019-05-10 00:10:28 +02:00
|
|
|
'validate-borgmatic-config = borgmatic.commands.validate_config:main',
|
2015-07-18 18:35:29 -07:00
|
|
|
]
|
|
|
|
},
|
2018-09-29 22:45:00 -07:00
|
|
|
obsoletes=['atticmatic'],
|
2019-05-12 11:30:36 +02:00
|
|
|
install_requires=(
|
2022-05-28 14:42:19 -07:00
|
|
|
'colorama>=0.4.1,<0.5',
|
2021-06-22 13:27:59 -07:00
|
|
|
'jsonschema',
|
2023-04-14 21:21:25 -07:00
|
|
|
'packaging',
|
2019-10-15 10:49:14 -07:00
|
|
|
'requests',
|
2021-03-30 15:53:19 -07:00
|
|
|
'ruamel.yaml>0.15.0,<0.18.0',
|
2019-05-12 11:30:36 +02:00
|
|
|
'setuptools',
|
|
|
|
),
|
2017-07-04 16:52:24 -07:00
|
|
|
include_package_data=True,
|
2022-05-26 07:05:04 -07:00
|
|
|
python_requires='>=3.7',
|
2014-10-30 22:34:03 -07:00
|
|
|
)
|