Skip to content

Commit

Permalink
Add long_description to setup.py; Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ingmferrer committed Feb 20, 2018
1 parent 5da2bc6 commit 45cf77a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ InfusionSoft API wrapper for Infusionsoft written in Python.

## Installing
```
git+git://github.com/GearPlug/infusionsoft-python.git
pip install infusionsoft-python
```

## Usage
Expand Down
9 changes: 8 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
import os
from setuptools import setup


def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()


setup(name='infusionsoft-python',
version='0.1',
description='API wrapper for Infusionsoft written in Python',
long_description=read('README.md'),
url='https://github.com/GearPlug/infusionsoft-python',
author='Yordy Gelvez',
author_email='[email protected]',
license='GPL',
packages=['infusionsoft', ],
packages=['infusionsoft'],
install_requires=[
'requests',
],
Expand Down

0 comments on commit 45cf77a

Please sign in to comment.