Skip to content

Commit

Permalink
fix setup.py to correctly include UI files
Browse files Browse the repository at this point in the history
  • Loading branch information
jacksonjacobs1 committed Jun 14, 2024
1 parent 14c49e3 commit 6f0bacd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# so we have to do it in setup.py
ui_files = [
os.path.relpath(f, "histoqc/ui/")
for f in glob.iglob("histoqc/ui/UserInterface/**/*", recursive=True)
for f in glob.iglob("histoqc/ui/**/*", recursive=True)
if os.path.isfile(f)
]
data_files = [
Expand Down

0 comments on commit 6f0bacd

Please sign in to comment.