setup.py 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. from setuptools import setup, find_packages
  2. VERSION = '1.0.2'
  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.command:main',
  24. ]
  25. },
  26. obsoletes=[
  27. 'atticmatic',
  28. ],
  29. tests_require=(
  30. 'flexmock',
  31. 'pytest',
  32. )
  33. )