Skip to content

Commit c342f37

Browse files
committed
Fix setup for cx_Freeze changes
1 parent 954667f commit c342f37

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

setup.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,10 @@
1616
"html",
1717
"http",
1818
"multiprocessing",
19+
"mypy",
1920
"numpy.distutils",
2021
"numpy.doc",
21-
"numpy.fft",
2222
"numpy.matrixlib.tests",
23-
"numpy.polynomial",
2423
"numpy.testing",
2524
"numpy.tests",
2625
"pydoc",
@@ -34,6 +33,11 @@
3433
"_lzma",
3534
"_socket",
3635
"_ssl",
36+
],
37+
"includes": [
38+
"encodings",
39+
"mutf8",
40+
"secrets",
3741
]
3842
}
3943

@@ -45,7 +49,7 @@
4549
author="timendum",
4650
url="https://github.com/timendum/minenbt/",
4751
packages=["minenbt"],
48-
executables=[Executable("minenbt/__main__.py", targetName="minenbt")],
52+
executables=[Executable("minenbt/__main__.py", target_name="minenbt")],
4953
options={"build_exe": build_exe_options},
5054
install_requires=["mulet-nbt", "numpy"],
5155
license="GNU General Public License v3.0",

0 commit comments

Comments
 (0)