Skip to content

Commit

Permalink
Update setup.py to pull long_description from README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Glogower committed Aug 5, 2014
1 parent 36a86b5 commit f74eac2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
limitations under the License.
"""
import sys
import pypandoc

from setuptools import setup, find_packages

Expand Down Expand Up @@ -43,10 +44,11 @@ def load_requirements(fname):
return requirements

REQUIREMENTS = load_requirements('requirements.txt')
LONG_DESCRIPTION = pypandoc.convert('README.md', 'rst')

setup(
name='netscaler-tool',
version='1.27.0',
version='1.27.1',
packages=find_packages(),

author="Brian Glogower",
Expand Down Expand Up @@ -89,5 +91,6 @@ def load_requirements(fname):
'NetScaler',
],
license="Apache v2.0",
long_description=LONG_DESCRIPTION,
url="https://github.com/tagged/netscaler-tool",
)

0 comments on commit f74eac2

Please sign in to comment.