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
21 lines (20 loc) · 691 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 691 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
setup(
name='python-amazon-ad-api',
version='0.4.8',
install_requires=[
"requests>=2.27.1,<2.32.0",
"six~=1.16.0",
"cachetools>=5.0,<5.4",
"pycryptodome>=3.13,<3.19",
"python-dotenv>=0.19.2,<1.1.0",
"pytz>=2021.3,<2024.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='info@leadtech.es',
description='Python wrapper for the Amazon Advertising API'
)