fix keyerror setup py
This commit is contained in:
parent
c02cfcd71c
commit
dcef53712f
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
@ -6,7 +6,7 @@ print("Using version: {str(os.environ['VERSION'])}")
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name="complib",
|
name="complib",
|
||||||
version=str(os.environ["VERSION"]),
|
version=str(os.environ.get('VERSION', "")),
|
||||||
author="F-WuTs",
|
author="F-WuTs",
|
||||||
author_email="joel.klimont@comp-air.at",
|
author_email="joel.klimont@comp-air.at",
|
||||||
description="",
|
description="",
|
||||||
|
|
Reference in a new issue