halfapi/halfapi/__init__.py
Maxime Alves LIRMM b96f4908c6 [release] 0.6.8
2022-02-28 10:10:06 +01:00

9 lines
154 B
Python

#!/usr/bin/env python3
__version__ = '0.6.8'
def version():
return f'HalfAPI version:{__version__}'
if __name__ == '__main__':
print(version())