forked from singer-io/tap-impact
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 834 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-impact',
version='1.0.0',
description='Singer.io tap for extracting data from the Impact Advertiser, Partner, Agency APIs',
author='jeff.huth@bytecode.io',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_impact'],
install_requires=[
'backoff==1.8.0',
'requests==2.22.0',
'singer-python==5.8.1'
],
extras_require={
'dev': [
'ipdb==0.11',
'pylint==2.5.3'
]
},
entry_points='''
[console_scripts]
tap-impact=tap_impact:main
''',
packages=find_packages(),
package_data={
'tap_impact': [
'schemas/*.json'
]
})