Correzione
This commit is contained in:
parent
aa765fee35
commit
73a6a78a63
4
setup.py
4
setup.py
@ -10,7 +10,7 @@ opzioni = {
|
|||||||
"app": ["Dropchat.py"],
|
"app": ["Dropchat.py"],
|
||||||
"data_files": ["preferenze.json"],
|
"data_files": ["preferenze.json"],
|
||||||
"options": {},
|
"options": {},
|
||||||
"setup_requires": ["py2app"],
|
"setup_requires": [],
|
||||||
}
|
}
|
||||||
|
|
||||||
if sys.platform == "darwin":
|
if sys.platform == "darwin":
|
||||||
@ -18,6 +18,7 @@ if sys.platform == "darwin":
|
|||||||
import py2app
|
import py2app
|
||||||
sys.argv += "py2app",
|
sys.argv += "py2app",
|
||||||
opzioni["options"] = {"py2app": {"argv_emulation": False}}
|
opzioni["options"] = {"py2app": {"argv_emulation": False}}
|
||||||
|
opzioni["setup_requires"] += "py2app",
|
||||||
except ImportError:
|
except ImportError:
|
||||||
exit("py2app non installato.")
|
exit("py2app non installato.")
|
||||||
|
|
||||||
@ -26,6 +27,7 @@ elif sys.platform == "win32":
|
|||||||
import py2exe
|
import py2exe
|
||||||
sys.argv += "py2exe",
|
sys.argv += "py2exe",
|
||||||
opzioni["options"] = {"py2exe": {"bundle_files": 1, "compressed": True}}
|
opzioni["options"] = {"py2exe": {"bundle_files": 1, "compressed": True}}
|
||||||
|
opzioni["setup_requires"] += "py2exe",
|
||||||
except ImportError:
|
except ImportError:
|
||||||
exit("py2exe non installato.")
|
exit("py2exe non installato.")
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user