This repository has been archived by the owner on Feb 5, 2024. It is now read-only.
forked from saleweaver/python-amazon-sp-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
72 lines (67 loc) · 2.63 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
from setuptools import setup
from sp_api.__version__ import __version__
setup(
name='python-amazon-sp-api',
version=__version__,
install_requires=[
"requests",
"boto3>=1.16.39",
"cachetools>=4.2",
"confuse>=1.4"
],
extras_require={
"aws-caching": ["aws-secretsmanager-caching"],
},
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.api.messaging',
'sp_api.api.upload',
'sp_api.api.merchant_fulfillment',
'sp_api.api.fulfillment_inbound',
'sp_api.auth',
'sp_api.base',
'sp_api.util',
##### DO NOT DELETE ########## INSERT PACKAGE HERE #######
'sp_api.api.listings_restrictions',
'sp_api.api.catalog_items',
'sp_api.api.product_type_definitions',
'sp_api.api.listings_items',
'sp_api.api.vendor_transaction_status',
'sp_api.api.vendor_shipments',
'sp_api.api.vendor_orders',
'sp_api.api.vendor_invoices',
'sp_api.api.vendor_direct_fulfillment_transactions',
'sp_api.api.vendor_direct_fulfillment_shipping',
'sp_api.api.vendor_direct_fulfillment_payments',
'sp_api.api.vendor_direct_fulfillment_orders',
'sp_api.api.vendor_direct_fulfillment_inventory',
'sp_api.api.tokens',
'sp_api.api.solicitations',
'sp_api.api.shipping',
'sp_api.api.services',
'sp_api.api.fba_small_and_light',
'sp_api.api.fba_inbound_eligibility',
'sp_api.api.authorization',
'sp_api.api.aplus_content',
'sp_api.api.fulfillment_outbound',
],
scripts=['make_endpoint/make_endpoint'],
url='https://github.com/saleweaver/python-amazon-sp-api',
license='MIT',
author='Michael',
author_email='[email protected]',
description='Python wrapper for the Amazon Selling-Partner API'
)