try to build on travis

merge-requests/1/head
Freddy Tan 8 years ago
parent 3c98d18c86
commit 1ba2ba3894

@ -18,7 +18,7 @@ before_script:
install:
- "curl https://bootstrap.pypa.io/ez_setup.py -o - | python"
- "pip install -r test/requirements.txt"
- "sudo apt-get -y install pypandoc"
- "sudo apt-get -y install pandoc"
- "pip install ."
# command to run tests
script:

@ -6,12 +6,14 @@ import os
dependencies = []
module_name = 'python-terraform'
short_description = 'This is a python module provide a wrapper ' \
'of terraform command line tool'
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except(IOError, ImportError):
long_description = open('README.md').read()
except(IOError, ImportError, OSError):
long_description = short_description
def get_version():
@ -31,7 +33,7 @@ setup(
license='MIT',
author='Freddy Tan',
author_email='beelit94@gmail.com',
description='This is a python module provide a wrapper of terraform command line tool',
description=short_description,
long_description=long_description,
packages=['python_terraform'],
package_data={},

Loading…
Cancel
Save