Skip to content

Commit 9f7c469

Browse files
committed
Update README.md; Rename setup.py name for PyPi
1 parent 8dc9aea commit 9f7c469

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ TypeForm API wrapper written in python.
33

44
## Installing
55
```
6-
pip install git+git://github.com/GearPlug/typeform-python.git
6+
pip install typeform-python
77
```
88

99
## Requirements

setup.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
1+
import os
12
from setuptools import setup
23

3-
setup(name='typeform',
4+
5+
def read(fname):
6+
return open(os.path.join(os.path.dirname(__file__), fname)).read()
7+
8+
9+
setup(name='typeform-python',
410
version='0.1',
511
description='API wrapper for Typeform written in Python',
12+
long_description=read('README.md'),
613
url='https://github.com/GearPlug/typeform-python',
714
author='Luisa Torres',
815
author_email='hanna860@gmail.com',

0 commit comments

Comments
 (0)