forked from saleweaver/python-amazon-sp-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (36 loc) · 1.19 KB
/
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
28
29
30
31
32
33
34
35
36
37
from setuptools import setup
setup(
name='python-amazon-sp-api',
version='0.2.3',
install_requires=[
"requests",
"six~=1.15.0",
"boto3~=1.16.39",
"cachetools~=4.2.0",
"pycryptodome",
"pytz",
"confuse~=1.4.0",
],
packages=['tests', 'tests.api', 'tests.api.orders', 'tests.api.sellers', 'tests.api.finances',
'tests.api.product_fees', 'tests.api.notifications', 'tests.api.reports', 'tests.client',
'sp_api',
'sp_api.api',
'sp_api.api.orders',
'sp_api.api.sellers',
'sp_api.api.finances',
'sp_api.api.product_fees',
'sp_api.api.products',
'sp_api.api.feeds',
'sp_api.api.sales',
'sp_api.api.catalog',
'sp_api.api.notifications',
'sp_api.api.reports',
'sp_api.api.inventories',
'sp_api.auth',
'sp_api.base'],
url='https://github.com/saleweaver/python-amazon-sp-api',
license='MIT',
author='Michael',
author_email='info@saleweaver.com',
description='Python wrapper for the Amazon Selling-Partner API'
)