forked from singer-io/tap-zendesk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 1.03 KB
/
setup.py
File metadata and controls
34 lines (32 loc) · 1.03 KB
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
#!/usr/bin/env python
from setuptools import setup
setup(name='tap-zendesk',
version='1.5.8',
description='Singer.io tap for extracting data from the Zendesk API',
author='Stitch',
url='https://singer.io',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_zendesk'],
install_requires=[
# Currently this refers to our fork. This will only work if we
# specifically install the correct version of our fork before
# trying to install this package.
'singer-python@https://github.com/Pathlight/singer-python/archive/refs/tags/v5.7.3.tar.gz#egg=singer-python-5.7.3',
'zenpy==2.0.24',
],
extras_require={
'dev': [
'ipython',
'ipdb',
'pylint',
'nose',
'nose-watch',
]
},
entry_points='''
[console_scripts]
tap-zendesk=tap_zendesk:main
''',
packages=['tap_zendesk'],
include_package_data=True,
)