shut the hound up

This commit is contained in:
Ondrej Samohel 2020-09-10 00:13:25 +02:00
parent ae986058cf
commit 9c8131bef3
No known key found for this signature in database
GPG key ID: 8A29C663C672C2B7
4 changed files with 119 additions and 91 deletions

View file

@ -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,
)