setup.py 294 B

1234567891011
  1. from distutils.core import setup
  2. setup(
  3. name = 's3pipe',
  4. version = '1.0',
  5. author = 'Tobias Galitzien',
  6. author_email = 'tg@trusttheadmin.de',
  7. url = 'https://github.com/tgal/s3pipe',
  8. description = 'Command line tool to upload data to Amazon S3 via a pipe',
  9. scripts = ['s3pipe'],
  10. )