forked from singer-io/tap-google-ads
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (35 loc) · 1.16 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
#!/usr/bin/env python
from setuptools import setup
setup(name='tap-google-ads',
version='1.6.0',
description='Singer.io tap for extracting data from the Google Ads API',
author='Stitch',
url='http://singer.io',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_google_ads'],
install_requires=[
'singer-python@git+https://github.com/railsware/singer-python/@ea0489dcb73fcb19195eea50eeff9a13d6914e9a',
'requests>=2.26.0',
'backoff~=2.2.1',
'google-ads==24.1.0',
'protobuf==4.25.3',
# Necessary to handle gRPC exceptions properly, documented
# in an issue here: https://github.com/googleapis/python-api-core/issues/301
'grpcio-status>=1.59.0,<1.64.0', # 1.64 depends on protobuf 5.x
],
extras_require= {
'dev': [
'pylint',
'nose',
'ipdb',
]
},
entry_points='''
[console_scripts]
tap-google-ads=tap_google_ads:main
''',
packages=['tap_google_ads'],
package_data = {
},
include_package_data=True,
)