forked from singer-io/tap-bing-ads
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (35 loc) · 1010 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
32
33
34
35
36
37
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='tap-bing-ads',
version="1.1.0",
description='Singer.io tap for extracting data from the Bing Ads API',
author='Stitch',
url='http://singer.io',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_bingads'],
install_requires=[
'arrow==0.12.0',
# Seems that suds-community is now the reference for 13.0.11.1 so we can install it now with the removal of use_2to3
# https://github.com/BingAds/BingAds-Python-SDK/pull/192
'bingads==13.0.11.1',
'requests==2.23.0',
'singer-python==5.9.0',
'stringcase==1.2.0',
'backoff==1.8.0',
'boto3==1.27.0'
],
extras_require={
'test': [
'pylint==2.14.0'
],
'dev': [
'ipdb'
]
},
entry_points='''
[console_scripts]
tap-bing-ads=tap_bing_ads:main
''',
packages=find_packages()
)