Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit cf35f1d

Browse files
committed
Merge pull request jotform#2 from emergence/master
Add setup.py to allow install using pip
2 parents 8f4dc7e + 511ed3b commit cf35f1d

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ Install via git clone:
1010
$ git clone git://github.com/jotform/jotform-api-python.git
1111
$ cd jotform-api-python
1212
13+
Install via pip:
14+
15+
$ pip install git+git://github.com/jotform/jotform-api-python.git
1316

1417
### Documentation
1518

setup.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
from setuptools import setup
2+
3+
setup(
4+
name="jotform",
5+
url='http://api.jotform.com/docs/',
6+
version='1.0',
7+
description='JotForm API - Python Client',
8+
author='JotForm',
9+
author_email='[email protected]',
10+
py_modules=['jotform']
11+
)

0 commit comments

Comments
 (0)