forked from panoplyio/source-typeform
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 619 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 619 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
from distutils.core import setup
setup(
name="panoply_typeform",
version="1.2.0",
description="Panoply Data Source for the Typeform API",
author="Alon Weissfeld",
author_email="alon.weissfeld@panoply.io",
url="http://panoply.io",
package_dir={"panoply": ""},
install_requires=[
"panoply-python-sdk==1.6.0",
"requests==2.21.0",
"backoff==1.8.0",
"ratelimit==2.2.1"
],
extras_require={
"test": [
"pycodestyle==2.4.0",
"coverage==4.5.2",
"mock==2.0.0"
]
},
packages=["panoply.typeform"]
)