1
1
mirror of https://github.com/leon-ai/leon.git synced 2024-11-24 04:31:31 +03:00

feat(tcp server): versioning

This commit is contained in:
louistiti 2022-10-09 00:31:52 +08:00
parent 2b8ac0eb2b
commit 3fe89bfda3
No known key found for this signature in database
GPG Key ID: 7ECA3DD523793FE6
2 changed files with 4 additions and 0 deletions

View File

@ -1,6 +1,8 @@
from cx_Freeze import setup, Executable
import sysconfig
from version import __version__
options = {
'build_exe': {
'packages': [
@ -30,6 +32,7 @@ executables = [
setup(
name='leon-tcp-server',
version=__version__,
executables=executables,
options=options
)

View File

@ -0,0 +1 @@
__version__ = '1.0.0'