Skip to content

Commit 45cf77a

Browse files
committed
Add long_description to setup.py; Update README.md
1 parent 5da2bc6 commit 45cf77a

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
@@ -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

setup.py

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

4+
5+
def read(fname):
6+
return open(os.path.join(os.path.dirname(__file__), fname)).read()
7+
8+
39
setup(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',
815
author_email='[email protected]',
916
license='GPL',
10-
packages=['infusionsoft', ],
17+
packages=['infusionsoft'],
1118
install_requires=[
1219
'requests',
1320
],

0 commit comments

Comments
 (0)