mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-04-28 17:57:16 +02:00
[setup] get correct Meshroom version + add 'cx_Freeze' to setup_requires
This commit is contained in:
parent
72a657ec48
commit
4867c7a5f7
1 changed files with 5 additions and 2 deletions
7
setup.py
7
setup.py
|
@ -2,7 +2,7 @@ import sys
|
||||||
|
|
||||||
import setuptools # for bdist
|
import setuptools # for bdist
|
||||||
from cx_Freeze import setup, Executable
|
from cx_Freeze import setup, Executable
|
||||||
|
import meshroom
|
||||||
|
|
||||||
build_exe_options = {
|
build_exe_options = {
|
||||||
# include dynamically loaded plugins
|
# include dynamically loaded plugins
|
||||||
|
@ -32,7 +32,10 @@ setup(
|
||||||
'enum34',
|
'enum34',
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
version="1.0", # TODO: get correct version info
|
setup_requires=[
|
||||||
|
'cx_Freeze'
|
||||||
|
],
|
||||||
|
version=meshroom.__version__,
|
||||||
options={"build_exe": build_exe_options},
|
options={"build_exe": build_exe_options},
|
||||||
executables=[meshroomExe],
|
executables=[meshroomExe],
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Reference in a new issue