mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
shut the hound up
This commit is contained in:
parent
ae986058cf
commit
9c8131bef3
4 changed files with 119 additions and 91 deletions
36
setup.py
36
setup.py
|
|
@ -5,40 +5,36 @@ from cx_Freeze import setup, Executable
|
|||
from version import __version__
|
||||
|
||||
|
||||
install_requires = ['clique',
|
||||
'jsonschema',
|
||||
'OpenTimelineIO',
|
||||
'pathlib2',
|
||||
'PIL',
|
||||
'pymongo',
|
||||
'Qt',
|
||||
'speedcopy']
|
||||
install_requires = [
|
||||
"clique",
|
||||
"jsonschema",
|
||||
"OpenTimelineIO",
|
||||
"pathlib2",
|
||||
"PIL",
|
||||
"pymongo",
|
||||
"Qt",
|
||||
"speedcopy",
|
||||
]
|
||||
|
||||
base = None
|
||||
if sys.platform == 'win32':
|
||||
base = 'Win32GUI'
|
||||
if sys.platform == "win32":
|
||||
base = "Win32GUI"
|
||||
|
||||
# Build options for cx_Freeze. Manually add/exclude packages and binaries
|
||||
buildOptions = dict(
|
||||
packages=install_requires,
|
||||
excludes=[],
|
||||
bin_includes=[],
|
||||
include_files=['schema', 'setup', 'vendor']
|
||||
include_files=["schema", "setup", "vendor"],
|
||||
)
|
||||
|
||||
|
||||
executables = [
|
||||
Executable(
|
||||
'pype.py',
|
||||
base=None,
|
||||
targetName='pype'
|
||||
)
|
||||
]
|
||||
executables = [Executable("pype.py", base=None, targetName="pype")]
|
||||
|
||||
setup(
|
||||
name='pype',
|
||||
name="pype",
|
||||
version=__version__,
|
||||
description='Ultimate pipeline',
|
||||
description="Ultimate pipeline",
|
||||
options=dict(build_exe=buildOptions),
|
||||
executables=executables,
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue