Skip to content

Commit 7183e66

Browse files
committed
add tabulate and networkx
1 parent a570236 commit 7183e66

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

hooks/hook-streamlit.py

+2
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,5 @@
99
datas += copy_metadata("scikit_posthocs")
1010
datas += copy_metadata("gnpsdata")
1111
datas += copy_metadata("scikit_learn")
12+
datas += copy_metadata("tabulate")
13+
datas += copy_metadata("networkx")

run_app_temp.spec

+4-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@ a = Analysis(
1818
("./myenv/Lib/site-packages/openpyxl", "./openpyxl/"),
1919
("./myenv/Lib/site-packages/scikit_posthocs", "./scikit_posthocs/"),
2020
("./myenv/Lib/site-packages/gnpsdata", "./gnpsdata/"),
21-
("./myenv/Lib/site-packages/sklearn", "./scikit_learn/")
21+
("./myenv/Lib/site-packages/scikit_learn", "./scikit_learn/"),
22+
("./myenv/Lib/site-packages/networkx", "./networkx/"),
23+
("./myenv/Lib/site-packages/tabulate", "./tabulate/"),
24+
2225
],
2326
hiddenimports=[],
2427
hookspath=['./hooks'],

0 commit comments

Comments
 (0)