From c5d799725e1b2e1344f56b69b85b7a8b017652be Mon Sep 17 00:00:00 2001 From: Alex Groce Date: Sat, 26 May 2018 11:38:34 -0700 Subject: [PATCH] new pip release with markdown description --- setup.py | 3 ++- tstl/harnessmaker.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index af69b33..a824329 100644 --- a/setup.py +++ b/setup.py @@ -4,8 +4,9 @@ setup( name='tstl', - version='1.2.24', + version='1.2.25', description='Template scripting testing language (TSTL)', + long_description_content_type="text/markdown", long_description=open('README.md').read(), packages=['tstl',], include_package_data = True, diff --git a/tstl/harnessmaker.py b/tstl/harnessmaker.py index 15929d9..107a749 100644 --- a/tstl/harnessmaker.py +++ b/tstl/harnessmaker.py @@ -441,7 +441,7 @@ def main(): baseIndent = " " if "-v" in sys.argv or "--version" in sys.argv: - print("TSTL, version 1.2.24") + print("TSTL, version 1.2.25") print("Documentation at https://github.com/agroce/tstl") sys.exit(0)