Skip to content

Commit f02cb0c

Browse files
committed
Added PIP support
1 parent dd78b02 commit f02cb0c

2 files changed

Lines changed: 24 additions & 3 deletions

File tree

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Amazon Product Advertising API V5 wrapper for Python 💰
1+
Amazon Product Advertising API V5 wrapper for Python
22
=======================================================
33
A simple Python wrapper for the Amazon Product Advertising API version 5.
44

@@ -12,8 +12,7 @@ Features
1212
Installation
1313
-------------
1414

15-
* Add this module to your project
16-
* PIP support coming in the future
15+
pip install python-amazon-paapi5
1716

1817
Usage
1918
-----

setup.py

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import setuptools
2+
3+
with open("README.md", "r") as fh:
4+
long_description = fh.read()
5+
6+
setuptools.setup(
7+
name="python-amazon-paapi5",
8+
version="0.1.0",
9+
author="Sergio Abad",
10+
author_email="sergio.abad@bytelix.com",
11+
description="Amazon Product Advertising API V5 wrapper for Python",
12+
long_description=long_description,
13+
long_description_content_type="text/markdown",
14+
url="https://github.com/sergioteula/python-amazon-paapi5",
15+
packages=setuptools.find_packages(),
16+
classifiers=[
17+
"Programming Language :: Python",
18+
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
19+
"Operating System :: OS Independent",
20+
],
21+
python_requires='>=2.7',
22+
)

0 commit comments

Comments
 (0)