forked from czpython/python-amazon-mws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 861 Bytes
/
setup.py
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
#!/usr/bin/env python
from setuptools import setup
setup(
name="python-amazon-mws",
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',
],
)