-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
37 lines (36 loc) · 1.05 KB
/
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
36
37
from setuptools import find_packages, setup
from os.path import abspath, dirname, join
setup(
name="tap-nice-incontact",
version="0.3.1",
description="Singer.io tap for extracting data from the NICE InContact Reporting API",
author="Stitch",
url="http://singer.io",
classifiers=["Programming Language :: Python :: 3 :: Only"],
py_modules=["tap_nice_incontact"],
install_requires=[
"backoff==1.8.0",
"certifi==2023.7.22",
"chardet==4.0.0",
"ciso8601==2.1.3",
"idna==2.10",
"jsonschema==2.6.0",
"python-dateutil==2.8.1",
"pytz==2018.4",
"requests==2.25.1",
"simplejson==3.11.1",
"singer-python==5.12.1",
"six==1.15.0",
"urllib3==1.26.18",
"isodate==0.6.0",
],
entry_points="""
[console_scripts]
tap-nice-incontact=tap_nice_incontact:main
""",
packages=find_packages(exclude=["tests"]),
package_data = {
"schemas": ["tap_nice_incontact/schemas/*.json"]
},
include_package_data=True,
)