forked from singer-io/tap-zendesk-chat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·26 lines (25 loc) · 857 Bytes
/
setup.py
File metadata and controls
executable file
·26 lines (25 loc) · 857 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name="tap-zendesk-chat",
version="0.1.13",
description="Singer.io tap for extracting data from the Zendesk Chat API",
author="Stitch",
url="http://singer.io",
classifiers=["Programming Language :: Python :: 3 :: Only"],
py_modules=["tap_zendesk_chat"],
install_requires=[
"python-dateutil==2.6.0", # because of singer-python issue
"pendulum==1.2.0", # because of singer-python issue
"singer-python==3.5.0",
"requests",
],
entry_points="""
[console_scripts]
tap-zendesk-chat=tap_zendesk_chat:main
""",
packages=["tap_zendesk_chat"],
package_data = {
"schemas": ["tap_zendesk_chat/schemas/*.json"]
},
include_package_data=True,
)