summaryrefslogtreecommitdiff
path: root/setup.py
blob: cfddb38beed05d9e1b357968940ea762a28f1d56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# -*- coding: utf-8 -*-
from distutils.core import setup

setup(
    name='requests-aws',
    version='0.1.0',
    author='Paul Tax',
    author_email='paultax@gmail.com',
    #packages=['requests-aws'],
    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(),
)