File: setup.py

package info (click to toggle)
requests-aws 0.1.5-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 104 kB
  • sloc: python: 188; makefile: 3
file content (29 lines) | stat: -rw-r--r-- 713 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# -*- coding: utf-8 -*-
import os
import sys

try:
    from setuptools import setup
    # hush pyflakes
    setup
except ImportError:
    from distutils.core import setup

if sys.argv[-1] == 'publish':
    os.system('python setup.py sdist upload')
    sys.exit()

setup(
    name='requests-aws',
    version='0.1.5',
    author='Paul Tax',
    author_email='paultax@gmail.com',
    include_package_data=True,
    install_requires = ['requests>=0.14.0'],
    py_modules=['awsauth'],
    url='https://github.com/tax/python-requests-aws',
    license='BSD licence, see LICENCE.txt',
    description='AWS authentication for Amazon S3 for the python requests module',
    long_description=open('README.md').read(),
)