File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33from distutils .core import setup
44from os import path
55from setuptools .command .install import install
6- import pypandoc
76
87here = path .abspath (path .dirname (__file__ ))
98
109# Create rst here from Markdown
1110if path .exists (path .join (here , 'README.md' )):
11+ import pypandoc
1212 z = pypandoc .convert ('README.md' ,'rst' ,format = 'markdown' )
13-
14- with open ('README.rst' ,'w' ) as outfile :
15- outfile .write (z )
13+ with open ('README.rst' ,'w' ) as outfile :
14+ outfile .write (z )
1615
1716with open (path .join (here , 'README.rst' )) as f :
1817 long_description = f .read ()
1918
2019
2120setup (name = 'hawkular-client' ,
22- version = '0.4.1 ' ,
21+ version = '0.4.3 ' ,
2322 description = 'Python client to communicate with Hawkular server over HTTP(S)' ,
2423 author = 'Michael Burman' ,
2524 author_email = 'miburman@redhat.com' ,
You can’t perform that action at this time.
0 commit comments