-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.py
More file actions
34 lines (32 loc) · 1.1 KB
/
build.py
File metadata and controls
34 lines (32 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
from cx_Freeze import setup, Executable
win32_executables = [Executable('src/ml2po/__main__.py',
base=None,
targetName="ml2po.exe"),
Executable('src/po2ml/__main__.py',
base=None,
targetName="po2ml.exe"),
Executable('src/mlcppgen/__main__.py',
base=None,
targetName="mlcppgen.exe"),
Executable('src/mlpp/__main__.py',
base=None,
targetName="mlpp.exe"),
Executable('src/validate_tra/__main__.py',
base=None,
targetName="validate_tra.exe"),
]
setup(
name='ml',
version='1.0',
license='MIT',
package_dir={'': 'src'},
packages=[
'ml',
'mlpp',
'mlcppgen',
'ml2po',
'po2ml',
'validate_tra'
],
executables=win32_executables,
)