2014-10-31 06:34:03 +01:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
2015-08-09 19:59:27 +02:00
|
|
|
|
2017-07-09 07:33:51 +02:00
|
|
|
VERSION = '1.1.0.dev0'
|
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',
|
|
|
|
download_url='https://torsion.org/hg/borgmatic/archive/%s.tar.gz' % VERSION,
|
2015-08-09 19:59:27 +02: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-31 06:34:03 +01:00
|
|
|
packages=find_packages(),
|
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',
|
|
|
|
'convert-borgmatic-config = borgmatic.commands.convert_config:main',
|
2017-07-09 20:41:55 +02:00
|
|
|
'generate-borgmatic-config = borgmatic.commands.generate_config:main',
|
2015-07-19 03:35:29 +02:00
|
|
|
]
|
|
|
|
},
|
2016-06-10 21:34:49 +02:00
|
|
|
obsoletes=[
|
2016-06-10 20:21:53 +02:00
|
|
|
'atticmatic',
|
2016-06-10 21:34:49 +02:00
|
|
|
],
|
2017-07-05 01:52:24 +02:00
|
|
|
install_requires=(
|
|
|
|
'pykwalify',
|
|
|
|
'ruamel.yaml<=0.15',
|
|
|
|
'setuptools',
|
|
|
|
),
|
2014-11-18 06:57:44 +01:00
|
|
|
tests_require=(
|
|
|
|
'flexmock',
|
2016-04-11 00:59:36 +02:00
|
|
|
'pytest',
|
2017-07-05 01:52:24 +02:00
|
|
|
),
|
|
|
|
include_package_data=True,
|
2014-10-31 06:34:03 +01:00
|
|
|
)
|