mirror of
https://github.com/coqui-ai/TTS.git
synced 2026-02-25 04:31:08 +01:00
7 lines
156 B
Python
7 lines
156 B
Python
import os
|
|
|
|
with open(os.path.join(os.path.dirname(__file__), "VERSION"), "r", encoding="utf-8") as f:
|
|
version = f.read().strip()
|
|
|
|
__version__ = version
|