10 lines
215 B
Python
10 lines
215 B
Python
|
import os
|
||
|
|
||
|
from trainer.model import *
|
||
|
from trainer.trainer import *
|
||
|
|
||
|
with open(os.path.join(os.path.dirname(__file__), "VERSION"), "r", encoding="utf-8") as f:
|
||
|
version = f.read().strip()
|
||
|
|
||
|
__version__ = version
|