From 45cf77acb8a4c8f201c7390352aaca1526225baf Mon Sep 17 00:00:00 2001 From: Miguel Ferrer <ingferrermiguel@gmail.com> Date: Tue, 20 Feb 2018 08:45:28 -0500 Subject: [PATCH] Add long_description to setup.py; Update README.md --- README.md | 2 +- setup.py | 9 ++++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fac7b91..ec9afe9 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/setup.py b/setup.py index 06e1d23..b66da02 100644 --- a/setup.py +++ b/setup.py @@ -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='yordy.gelvez@gmail.com', license='GPL', - packages=['infusionsoft', ], + packages=['infusionsoft'], install_requires=[ 'requests', ],