File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed
Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ InfusionSoft API wrapper for Infusionsoft written in Python.
44
55## Installing
66```
7- git+git://github.com/GearPlug/ infusionsoft-python.git
7+ pip install infusionsoft-python
88```
99
1010## Usage
Original file line number Diff line number Diff line change 1+ import os
12from setuptools import setup
23
4+
5+ def read (fname ):
6+ return open (os .path .join (os .path .dirname (__file__ ), fname )).read ()
7+
8+
39setup (name = 'infusionsoft-python' ,
410 version = '0.1' ,
511 description = 'API wrapper for Infusionsoft written in Python' ,
12+ long_description = read ('README.md' ),
613 url = 'https://github.com/GearPlug/infusionsoft-python' ,
714 author = 'Yordy Gelvez' ,
815916 license = 'GPL' ,
10- packages = ['infusionsoft' , ],
17+ packages = ['infusionsoft' ],
1118 install_requires = [
1219 'requests' ,
1320 ],
You can’t perform that action at this time.
0 commit comments