setup.py 522 B

1234567891011121314151617181920
  1. from setuptools import setup, find_packages
  2. setup(
  3. name='atticmatic',
  4. version='0.1.4',
  5. description='A wrapper script for Attic/Borg backup software that creates and prunes backups',
  6. author='Dan Helfman',
  7. author_email='witten@torsion.org',
  8. packages=find_packages(),
  9. entry_points={
  10. 'console_scripts': [
  11. 'atticmatic = atticmatic.command:main',
  12. 'borgmatic = atticmatic.command:main',
  13. ]
  14. },
  15. tests_require=(
  16. 'flexmock',
  17. 'nose',
  18. )
  19. )