From 4e9a55a5b48d6cde8344b94fa0cd6ffbc1b24747 Mon Sep 17 00:00:00 2001 From: Tax Date: Wed, 3 Oct 2012 15:30:27 +0200 Subject: creating python package --- MANIFEST | 5 +++++ MANIFEST.in | 1 + setup.py | 14 ++++++++++++++ 3 files changed, 20 insertions(+) create mode 100644 MANIFEST create mode 100644 MANIFEST.in create mode 100644 setup.py diff --git a/MANIFEST b/MANIFEST new file mode 100644 index 0000000..805632f --- /dev/null +++ b/MANIFEST @@ -0,0 +1,5 @@ +README.md +awsauth.py +example.py +setup.py +test.py diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..98e7d2c --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1 @@ +include README.md *.py \ No newline at end of file diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..cfddb38 --- /dev/null +++ b/setup.py @@ -0,0 +1,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(), +) \ No newline at end of file -- cgit v1.2.1