-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 785 Bytes
/
setup.py
File metadata and controls
31 lines (29 loc) · 785 Bytes
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
setup(name='tap-eloqua',
version='1.3.1',
description='Singer.io tap for extracting data from the Oracle Eloqua API',
author='Stitch',
url='https://singer.io',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_eloqua'],
install_requires=[
'backoff==1.10.0',
'requests==2.32.4',
'pendulum==2.0.3',
'singer-python==5.13.2'
],
extras_require={
'dev': [
'ipdb'
]
},
entry_points='''
[console_scripts]
tap-eloqua=tap_eloqua:main
''',
packages=['tap_eloqua'],
package_data = {
'tap_eloqua': ['schemas/*.json'],
},
)