11 lines
246 B
Python
11 lines
246 B
Python
|
#!/usr/bin/env python3
|
||
|
# @author yutent<yutent.io@gmail.com>
|
||
|
# @date 2023/08/31 11:55:25
|
||
|
|
||
|
from webengine.gtk3._webengine import WebEngine
|
||
|
from webengine.gtk3._settings import create_setting
|
||
|
|
||
|
|
||
|
build = (0, 1, 0)
|
||
|
version = '.'.join(map(str, build))
|