Skip to content

Commit

Permalink
Improved setup.py for PyPi
Browse files Browse the repository at this point in the history
  • Loading branch information
czpython committed May 8, 2013
1 parent b8ebe92 commit 0281699
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
16 changes: 14 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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="[email protected]",
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',
],
)
)

0 comments on commit 0281699

Please sign in to comment.