forked from singer-io/tap-purecloud
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
26 lines (24 loc) · 781 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
#!/usr/bin/env python
from setuptools import setup, find_packages
import os.path
setup(name='tap-purecloud',
version='0.0.7',
description='Singer.io tap for extracting data from the Genesys Purecloud API',
author='Fishtown Analytics',
url='http://fishtownanalytics.com',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_purecloud'],
install_requires=[
'singer-python==5.0.12',
'backoff==1.3.2',
'requests==2.25.1',
'python-dateutil==2.6.0',
'PureCloudPlatformClientV2==111.0.0',
'websockets==5.0.1'
],
entry_points='''
[console_scripts]
tap-purecloud=tap_purecloud:main
''',
packages=['tap_purecloud']
)