From 0281699dbd9472c3298c8dd62a347beab279d169 Mon Sep 17 00:00:00 2001 From: Paulo Alvarado Date: Wed, 8 May 2013 03:04:23 -0400 Subject: [PATCH] Improved setup.py for PyPi --- setup.cfg | 2 ++ setup.py | 16 ++++++++++++++-- 2 files changed, 16 insertions(+), 2 deletions(-) create mode 100644 setup.cfg diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..b88034e --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[metadata] +description-file = README.md diff --git a/setup.py b/setup.py index 02025af..8fa808d 100644 --- a/setup.py +++ b/setup.py @@ -4,13 +4,25 @@ setup( name="python-amazon-mws", - version="0.2", + version="0.3", description="A python interface for Amazon MWS", author="Paulo Alvarado", author_email="commonzenpython@gmail.com", url="http://github.com/czpython/python-amazon-mws", packages=['mws'], + download_url = 'https://github.com/czpython/python-amazon-mws/tarball/0.3', + classifiers = [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Operating System :: OS Independent", + "Topic :: Internet", + "Natural Language :: English", + "Programming Language :: Python :: 2", + "Programming Language :: Python :: 2.5", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7"], + ) install_requires=[ 'requests', ], -) \ No newline at end of file +)