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