forked from singer-io/tap-purecloud
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 995 Bytes
/
setup.py
File metadata and controls
31 lines (29 loc) · 995 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-purecloud',
version='0.0.17',
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.12.0',
'backoff==1.8.0',
'requests==2.25.1',
'python-dateutil==2.6.0',
'PureCloudPlatformClientV2==151.0.0',
# Using Python 3.7 so upgrade from 5.0.1 to 6.0.0
# See https://github.com/aaugustin/websockets/issues/432
'websockets==6.0.0'
],
entry_points='''
[console_scripts]
tap-purecloud=tap_purecloud:main
''',
packages=['tap_purecloud'],
package_data={
'schemas': ['tap_purecloud/schemas/*.json']
},
include_package_data=True,
)