-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (31 loc) · 775 Bytes
/
setup.py
File metadata and controls
32 lines (31 loc) · 775 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
27
28
29
30
31
32
#!/usr/bin/env python
from setuptools import setup
setup(
name="tap-surveymonkey",
version="2.1.1",
description="Singer.io tap for extracting data",
author="Stitch",
url="http://singer.io",
classifiers=["Programming Language :: Python :: 3 :: Only"],
py_modules=["tap_surveymonkey"],
install_requires=[
"singer-python==6.0.1",
"requests==2.32.4",
],
extras_require={
'dev': [
'ipdb',
'pylint',
'urllib3==1.26.15'
]
},
entry_points="""
[console_scripts]
tap-surveymonkey=tap_surveymonkey:main
""",
packages=["tap_surveymonkey"],
package_data={
"schemas": ["tap_surveymonkey/schemas/*.json"]
},
include_package_data=True,
)