Skip to content

Commit f74eac2

Browse files
author
Brian Glogower
committed
Update setup.py to pull long_description from README.md
1 parent 36a86b5 commit f74eac2

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
limitations under the License.
1717
"""
1818
import sys
19+
import pypandoc
1920

2021
from setuptools import setup, find_packages
2122

@@ -43,10 +44,11 @@ def load_requirements(fname):
4344
return requirements
4445

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

4749
setup(
4850
name='netscaler-tool',
49-
version='1.27.0',
51+
version='1.27.1',
5052
packages=find_packages(),
5153

5254
author="Brian Glogower",
@@ -89,5 +91,6 @@ def load_requirements(fname):
8991
'NetScaler',
9092
],
9193
license="Apache v2.0",
94+
long_description=LONG_DESCRIPTION,
9295
url="https://github.com/tagged/netscaler-tool",
9396
)

0 commit comments

Comments
 (0)