forked from singer-io/tap-adwords
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (36 loc) · 1 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
#!/usr/bin/env python
from setuptools import setup
setup(name='tap-adwords',
version="1.6.0",
description='Singer.io tap for extracting data from the Adwords api',
author='Stitch',
url='http://singer.io',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_adwords'],
install_requires=[
'singer-python==5.1.5',
'requests==2.13.0',
'googleads==10.1.0',
'suds-jurko==0.6'
],
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,
)