We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65431e3 commit c699f20Copy full SHA for c699f20
1 file changed
setup.py
@@ -0,0 +1,14 @@
1
+from setuptools import setup
2
+
3
+setup(name='typeform',
4
+ version='0.1',
5
+ description='API wrapper for Typeform written in Python',
6
+ url='https://github.com/GearPlug/typeform-python',
7
+ author='Luisa Torres',
8
+ author_email='hanna860@gmail.com',
9
+ license='GPL',
10
+ packages=['typeform'],
11
+ install_requires=[
12
+ 'requests',
13
+ ],
14
+ zip_safe=False)
0 commit comments