mirror of
https://github.com/CoolProp/CoolProp.git
synced 2026-01-13 07:58:04 -05:00
16 lines
371 B
Python
16 lines
371 B
Python
"""
|
|
CPWeb - A collection of commonly used routines to produce CoolProp's online documentation
|
|
=====
|
|
|
|
"""
|
|
from __future__ import division, absolute_import, print_function
|
|
|
|
|
|
def get_version():
|
|
return 5.0
|
|
|
|
|
|
if __name__ == "__main__":
|
|
print('You are using version %s of the Python package for creating CoolProp\' online documentation.' % (get_version()))
|
|
print()
|