/ src / __version__.py
__version__.py
1  """Return the current version"""
2  VERSION = (1, 0, 0)
3  
4  __version__ = ".".join(map(str, VERSION))