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:
parent
2b8ac0eb2b
commit
3fe89bfda3
@ -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
|
||||
)
|
||||
|
1
tcp_server/src/version.py
Normal file
1
tcp_server/src/version.py
Normal file
@ -0,0 +1 @@
|
||||
__version__ = '1.0.0'
|
Loading…
Reference in New Issue
Block a user