forked from denisneuf/python-amazon-ad-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 739 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 739 Bytes
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.6.8',
install_requires=[
"requests>=2.27.1,<2.33.0",
"six>=1.16,<1.18",
"cachetools>=5.0,<6.3",
"pycryptodome>=3.13,<3.24",
"pytz>=2021.3,<2026.0",
"confuse>=1.7,<2.2",
],
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='denisneuf@hotmail.com',
description='Python wrapper for the Amazon Advertising API',
)