setup.py 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. from setuptools import setup, find_packages
  2. VERSION = '0.1.8.dev0'
  3. setup(
  4. name='atticmatic',
  5. version=VERSION,
  6. description='A wrapper script for Attic/Borg backup software that creates and prunes backups',
  7. author='Dan Helfman',
  8. author_email='witten@torsion.org',
  9. url='https://torsion.org/atticmatic',
  10. download_url='https://torsion.org/hg/atticmatic/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. 'atticmatic = atticmatic.command:main',
  24. 'borgmatic = atticmatic.command:main',
  25. ]
  26. },
  27. tests_require=(
  28. 'flexmock',
  29. 'nose',
  30. )
  31. )