forked from singer-io/tap-pendo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·38 lines (37 loc) · 916 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
36
37
38
#!/usr/bin/env python
from setuptools import setup
setup(
name="tap-pendo",
version="0.4.2",
description="Singer.io tap for extracting data",
author="Stitch",
url="https://github.com/singer-io/tap-pendo",
classifiers=["Programming Language :: Python :: 3 :: Only"],
py_modules=["tap_pendo"],
install_requires=[
'singer-python==5.12.2',
"requests",
'pyhumps==1.3.1',
'backoff==1.8.0',
'ijson==3.1.4',
],
extras_require={
'test': [
'pylint==2.5.3',
'nose'
],
'dev': [
'ipdb==0.11'
]
},
entry_points="""
[console_scripts]
tap-pendo=tap_pendo:main
""",
packages=["tap_pendo"],
package_data={
"schemas": ["tap_pendo/schemas/*.json"],
"schemas/shared": ["tap_pendo/schemas/shared/*.json"]
},
include_package_data=True,
)