|
@@ -7,6 +7,8 @@ from time import sleep as _sleep
|
|
|
|
|
|
from typing import Dict as _Dict, List as _List, Optional as _Option, Any as _Any
|
|
|
|
|
|
+VERSION: str = '1.0'
|
|
|
+
|
|
|
try:
|
|
|
from click import echo as _echo, style as _style, command as _command, option as _option, argument as _arg
|
|
|
except ImportError:
|
|
@@ -90,7 +92,7 @@ def _write_profile(profile_name: str):
|
|
|
_profile_pre_check(profile_name)
|
|
|
with open(_join(profile_name, profile_name+".toml"), "w") as f:
|
|
|
f.writelines("\n".join([
|
|
|
- '# Tyrell :: v0.1-dev :: More human than human',
|
|
|
+ f'# Tyrell :: v{VERSION} :: More human than human',
|
|
|
'',
|
|
|
'# Placeholders',
|
|
|
'',
|