-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (43 loc) · 1.25 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
38
39
40
41
42
43
44
45
#!/usr/bin/env python
from setuptools import setup
setup(name='tap-adwords',
version="meltano.1.0.2",
description='Meltano Maintained Fork of tap-adwords - a tap for extracting data from the Adwords api',
author='Meltano and Stitch',
url='http://singer.io',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_adwords'],
install_requires=[
'singer-python==5.1.5',
'requests==2.20.0',
'googleads==27.0.0',
'pytz==2018.4',
'zeep==3.1.0', # googleads dependency, pinned to 3.1.0 (tested version)
],
extras_require={
'dev': [
'ipdb==0.11',
'pylint'
]
},
entry_points='''
[console_scripts]
tap-adwords=tap_adwords:main
''',
packages=['tap_adwords'],
package_data = {
'tap_adwords/schemas': [
"accounts.json",
"ad_groups.json",
"ads.json",
"campaigns.json",
],
'tap_adwords/metadata': [
"accounts.json",
"ad_groups.json",
"ads.json",
"campaigns.json",
],
},
include_package_data=True,
)