diff --git a/.gitignore b/.gitignore index 9b1f7af1..e8c68ee9 100644 --- a/.gitignore +++ b/.gitignore @@ -14,6 +14,7 @@ dist .coverage htmlcov junit +coverage.xml # PyCharm .idea diff --git a/plugins/ext_test/setup.py b/plugins/ext_test/setup.py index d5fe49cd..06e7827d 100644 --- a/plugins/ext_test/setup.py +++ b/plugins/ext_test/setup.py @@ -11,10 +11,10 @@ with open(os.path.join(here, 'README.md'), encoding='utf-8') as f: long_description = f.read() -scm_version = { - 'root': '../..', - 'git_describe_command': 'git describe --dirty --tags --long --match "plugin-ext-test*"', -} +# scm_version = { +# 'root': '../..', +# 'git_describe_command': "git describe --dirty --tags --long --match plugin-ext-test*", +# } PACKAGE_DATA = { 'cmd2_ext_test': ['py.typed'], @@ -22,7 +22,7 @@ setuptools.setup( name='cmd2-ext-test', - version=scm_version, + version='2.0.0', description='External test plugin for cmd2. Allows for external invocation of commands as if from a cmd2 pyscript', long_description=long_description, long_description_content_type='text/markdown',