2
0

setup.py 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. from setuptools import setup, find_packages
  2. VERSION = '1.1.7'
  3. setup(
  4. name='borgmatic',
  5. version=VERSION,
  6. description='A wrapper script for Borg backup software that creates and prunes backups',
  7. author='Dan Helfman',
  8. author_email='witten@torsion.org',
  9. url='https://torsion.org/borgmatic',
  10. download_url='https://torsion.org/hg/borgmatic/archive/%s.tar.gz' % VERSION,
  11. classifiers=(
  12. 'Development Status :: 5 - Production/Stable',
  13. 'Environment :: Console',
  14. 'Intended Audience :: System Administrators',
  15. 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
  16. 'Programming Language :: Python',
  17. 'Topic :: Security :: Cryptography',
  18. 'Topic :: System :: Archiving :: Backup',
  19. ),
  20. packages=find_packages(),
  21. entry_points={
  22. 'console_scripts': [
  23. 'borgmatic = borgmatic.commands.borgmatic:main',
  24. 'upgrade-borgmatic-config = borgmatic.commands.convert_config:main',
  25. 'generate-borgmatic-config = borgmatic.commands.generate_config:main',
  26. ]
  27. },
  28. obsoletes=[
  29. 'atticmatic',
  30. ],
  31. install_requires=(
  32. 'pykwalify',
  33. 'ruamel.yaml<=0.15',
  34. 'setuptools',
  35. ),
  36. tests_require=(
  37. 'flexmock',
  38. 'pytest',
  39. ),
  40. include_package_data=True,
  41. )