We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8dc9aea commit 9f7c469Copy full SHA for 9f7c469
README.md
@@ -3,7 +3,7 @@ TypeForm API wrapper written in python.
3
4
## Installing
5
```
6
-pip install git+git://github.com/GearPlug/typeform-python.git
+pip install typeform-python
7
8
9
## Requirements
setup.py
@@ -1,8 +1,15 @@
1
+import os
2
from setuptools import setup
-setup(name='typeform',
+
+def read(fname):
+ return open(os.path.join(os.path.dirname(__file__), fname)).read()
+setup(name='typeform-python',
10
version='0.1',
11
description='API wrapper for Typeform written in Python',
12
+ long_description=read('README.md'),
13
url='https://github.com/GearPlug/typeform-python',
14
author='Luisa Torres',
15
author_email='hanna860@gmail.com',
0 commit comments