forked from denisneuf/python-amazon-ad-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (28 loc) · 730 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
28
29
from setuptools import setup
setup(
name='python-amazon-ad-api',
version='0.5.6',
install_requires=[
"requests>=2.27.1,<2.33.0",
"six~=1.16.0",
"cachetools>=5.0,<5.4",
"pycryptodome>=3.13,<3.21",
"pytz>=2021.3,<2025.0",
"confuse>=1.7,<2.1",
],
packages=[
'ad_api',
'ad_api.api',
'ad_api.auth',
'ad_api.base',
'ad_api.api.sp',
'ad_api.api.sb',
'ad_api.api.sd',
'ad_api.api.dsp',
],
url='https://github.com/denisneuf/python-amazon-ad-api',
license='MIT',
author='Daniel Alvaro',
author_email='[email protected]',
description='Python wrapper for the Amazon Advertising API',
)