forked from singer-io/tap-intercom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 890 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='tap-intercom',
version='2.1.0',
description='Singer.io tap for extracting data from the Intercom API',
author='[email protected]',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_intercom'],
install_requires=[
'backoff==1.8.0',
'requests==2.23.0',
'singer-python==5.10.0'
],
entry_points='''
[console_scripts]
tap-intercom=tap_intercom:main
''',
packages=find_packages(),
package_data={
'schemas': ['tap_intercom/schemas/*.json']
},
include_package_data=True,
extras_require={
'dev': [
'pylint==2.14.5',
'ipdb',
'nose',
'parameterized'
]
}
)