forked from singer-io/tap-linkedin-ads
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 840 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='tap-linkedin-ads',
version='2.1.0',
description='Singer.io tap for extracting data from the LinkedIn Marketing Ads API API 2.0',
author='[email protected]',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_linkedin_ads'],
install_requires=[
'backoff==1.8.0',
'requests==2.22.0',
'singer-python==5.12.1'
],
extras_require={
'dev': [
'ipdb',
'pylint',
]
},
entry_points='''
[console_scripts]
tap-linkedin-ads=tap_linkedin_ads:main
''',
packages=find_packages(),
package_data={
'tap_linkedin_ads': [
'schemas/*.json'
]
})