We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78747b2 commit 4c16196Copy full SHA for 4c16196
1 file changed
setup.py
@@ -7,17 +7,19 @@
7
8
here = path.abspath(path.dirname(__file__))
9
10
-with open(path.join(here, 'README.md')) as f:
11
- long_description = f.read()
12
-
13
# Create rst here from Markdown
14
-z = pypandoc.convert('README.md','rst',format='markdown')
15
+if path.exists(path.join(here, 'README.md')):
+ z = pypandoc.convert('README.md','rst',format='markdown')
+
16
with open('README.rst','w') as outfile:
17
outfile.write(z)
+with open(path.join(here, 'README.rst')) as f:
18
+ long_description = f.read()
19
20
21
setup(name='hawkular-client',
- version='0.4.0',
22
+ version='0.4.1',
23
description='Python client to communicate with Hawkular server over HTTP(S)',
24
author='Michael Burman',
25
author_email='miburman@redhat.com',
0 commit comments