Skip to content

Commit c699f20

Browse files
authored
Create setup.py
1 parent 65431e3 commit c699f20

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

setup.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)