We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 112eccf commit 6186b51Copy full SHA for 6186b51
1 file changed
setup.py
@@ -30,8 +30,6 @@ def bundle_libs(*libs):
30
with open(path / "modules/globals.py", "rb") as f:
31
version = str(re.search(rb'version = "([^\s]+)"', f.read()).group(1), encoding="utf-8")
32
33
-py_modules = []
34
-
35
cx_Freeze.setup(
36
name="F95Checker",
37
version=version,
@@ -75,5 +73,6 @@ def bundle_libs(*libs):
75
73
("CFBundleSignature", "????"),
76
74
]
77
}
78
- }
+ },
+ py_modules=[]
79
)
0 commit comments