-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (33 loc) · 948 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='tap-twitter-ads',
version='0.0.7',
description='Singer.io tap for extracting data from the Twitter Ads API API',
author='[email protected]',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_twitter_ads'],
install_requires=[
'backoff==1.8.0',
'requests==2.23.0',
'singer-python==5.9.0',
'twitter-ads==9.0.1'
],
extras_require={
'dev': [
'pylint',
'ipdb',
'nose',
]
},
entry_points='''
[console_scripts]
tap-twitter-ads=tap_twitter_ads:main
''',
packages=find_packages(),
package_data={
'tap_twitter_ads': [
'schemas/*.json',
'schemas/shared/*.json',
'tests/*.py'
]
})