From 38e40fb7723c451ac3adf549226391dac5c24f5c Mon Sep 17 00:00:00 2001 From: Joel Hillacre Date: Mon, 14 Jul 2014 16:48:00 -0600 Subject: [PATCH 1/3] Add a setup.py to allow install using pip --- setup.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..4f91cfa --- /dev/null +++ b/setup.py @@ -0,0 +1,11 @@ +from setuptools import setup + +setup( + name="jotform", + url='http://api.jotform.com/docs/' + version='1.0', + description='JotForm API - Python Client', + author='JotForm', + author_email='api@jotform.com', + py_modules=['jotform'] +) From 5ae04acf75e86061b06385250a220ba576e2e62a Mon Sep 17 00:00:00 2001 From: Joel Hillacre Date: Mon, 14 Jul 2014 16:51:51 -0600 Subject: [PATCH 2/3] missing comma --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4f91cfa..9f0e238 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name="jotform", - url='http://api.jotform.com/docs/' + url='http://api.jotform.com/docs/', version='1.0', description='JotForm API - Python Client', author='JotForm', From 511ed3bb7b509c81f864bfa4d3b6e4e56baa5f91 Mon Sep 17 00:00:00 2001 From: Joel Hillacre Date: Mon, 14 Jul 2014 16:58:33 -0600 Subject: [PATCH 3/3] Adding instructions for installing via pip --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 060f367..1dd57a8 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,9 @@ Install via git clone: $ git clone git://github.com/jotform/jotform-api-python.git $ cd jotform-api-python +Install via pip: + + $ pip install git+git://github.com/jotform/jotform-api-python.git ### Documentation