We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36a86b5 commit f74eac2Copy full SHA for f74eac2
setup.py
@@ -16,6 +16,7 @@
16
limitations under the License.
17
"""
18
import sys
19
+import pypandoc
20
21
from setuptools import setup, find_packages
22
@@ -43,10 +44,11 @@ def load_requirements(fname):
43
44
return requirements
45
46
REQUIREMENTS = load_requirements('requirements.txt')
47
+LONG_DESCRIPTION = pypandoc.convert('README.md', 'rst')
48
49
setup(
50
name='netscaler-tool',
- version='1.27.0',
51
+ version='1.27.1',
52
packages=find_packages(),
53
54
author="Brian Glogower",
@@ -89,5 +91,6 @@ def load_requirements(fname):
89
91
'NetScaler',
90
92
],
93
license="Apache v2.0",
94
+ long_description=LONG_DESCRIPTION,
95
url="https://github.com/tagged/netscaler-tool",
96
)
0 commit comments