File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- Amazon Product Advertising API V5 wrapper for Python 💰
1+ Amazon Product Advertising API V5 wrapper for Python
22=======================================================
33A simple Python wrapper for the Amazon Product Advertising API version 5.
44
@@ -12,8 +12,7 @@ Features
1212Installation
1313-------------
1414
15- * Add this module to your project
16- * PIP support coming in the future
15+ pip install python-amazon-paapi5
1716
1817Usage
1918-----
Original file line number Diff line number Diff line change 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+ )
You can’t perform that action at this time.
0 commit comments