Skip to content

Commit a7f0567

Browse files
committed
packages
1 parent dd30590 commit a7f0567

File tree

4 files changed

+20
-5
lines changed

4 files changed

+20
-5
lines changed

pyproject.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[build-system]
2+
requires = [
3+
"setuptools>=42",
4+
"wheel"
5+
]
6+
build-backend = "setuptools.build_meta"

requeriments.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
pytest
2+
requests~=2.26.0"
3+
six>=1.16,<2
4+
cachetools~=4.2.4
5+
setuptools~=58.0.4
6+
pycryptodome~=3.11.0
7+
python-dotenv~=0.19.1
8+
pytz~=2021.3
9+
confuse~=1.6.0

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[metadata]
22
name = python-amazon-ad-api
3-
version = 0.1.0
4-
author = Daniel
3+
version = 0.1.2
4+
author = Daniel Alvaro
55
author_email = [email protected]
66
description = Python wrapper for the Amazon Advertising API
77
long_description = file: README.md

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
setup(
44
name='python-amazon-ad-api',
5-
version='0.1.0',
5+
version='0.1.2',
66
install_requires=[
77
"requests~=2.26.0",
88
"six~=1.16.0",
9-
"cachetools~=4.2.2",
9+
"cachetools~=4.2.4",
1010
"pycryptodome~=3.11.0",
1111
"python-dotenv~=0.19.1",
1212
"pytz~=2021.3",
@@ -15,7 +15,7 @@
1515
packages=['ad_api','ad_api.api','ad_api.auth','ad_api.base','ad_api.api.sp','ad_api.api.sb','ad_api.api.sd'],
1616
url='https://github.com/denisneuf/python-amazon-ad-api',
1717
license='MIT',
18-
author='Daniel',
18+
author='Daniel Alvaro',
1919
author_email='[email protected]',
2020
description='Python wrapper for the Amazon Advertising API'
2121
)

0 commit comments

Comments
 (0)