forked from singer-io/tap-typeform
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·28 lines (26 loc) · 709 Bytes
/
setup.py
File metadata and controls
executable file
·28 lines (26 loc) · 709 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name="tap-typeform",
version="1.1.0",
description="Singer.io tap for extracting data from the TypeForm Responses API",
author="bytcode.io",
url="http://singer.io",
classifiers=["Programming Language :: Python :: 3 :: Only"],
install_requires=[
"singer-python==5.4.0",
"pendulum",
"ratelimit",
"backoff==1.3.2",
"requests==2.20.0",
],
entry_points="""
[console_scripts]
tap-typeform=tap_typeform:main
""",
packages=find_packages(),
package_data = {
"schemas": ["tap_typeform/schemas/*.json"]
},
include_package_data=True
)