fix description
This commit is contained in:
parent
f49048825c
commit
b3efb6b5d4
1 changed files with 5 additions and 2 deletions
7
setup.py
7
setup.py
|
@ -9,8 +9,11 @@ module_name = 'python-terraform'
|
||||||
short_description = 'This is a python module provide a wrapper ' \
|
short_description = 'This is a python module provide a wrapper ' \
|
||||||
'of terraform command line tool'
|
'of terraform command line tool'
|
||||||
|
|
||||||
with open('DESCRIPTION.rst') as f:
|
try:
|
||||||
long_description = f.read()
|
with open('DESCRIPTION.rst') as f:
|
||||||
|
long_description = f.read()
|
||||||
|
except IOError:
|
||||||
|
long_description = short_description
|
||||||
|
|
||||||
|
|
||||||
def get_version():
|
def get_version():
|
||||||
|
|
Loading…
Reference in a new issue