-
Notifications
You must be signed in to change notification settings - Fork 38
/
setup.py
35 lines (33 loc) · 878 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
27
28
29
30
31
32
33
34
35
#!/usr/bin/env python
from setuptools import setup
setup(name='tap-zendesk',
version='2.6.1',
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=[
'singer-python==6.0.0',
'zenpy==2.0.24',
'backoff==2.2.1',
'requests==2.31.0',
'aiohttp==3.10.10'
],
extras_require={
'dev': [
'ipdb',
],
'test': [
'pylint==3.0.3',
'nose2',
'pytest'
]
},
entry_points='''
[console_scripts]
tap-zendesk=tap_zendesk:main
''',
packages=['tap_zendesk'],
include_package_data=True,
)