setup.py 454 B

12345678910111213141516
  1. import sys
  2. from setuptools import setup
  3. setup(
  4. name = 's3scrot',
  5. version = '1.0',
  6. description = 'Tool to capture and upload screenshots to Amazon S3',
  7. author = 'Ryan McGuire',
  8. author_email = 'ryan@enigmacurry.com',
  9. url = 'https://github.com/EnigmaCurry/s3scrot',
  10. install_requires = ['boto'],
  11. packages=["s3scrot"],
  12. zip_safe=False,
  13. entry_points = {
  14. 'console_scripts': ['s3scrot = s3scrot.s3scrot:main']},
  15. )