Skip to content

Commit

Permalink
fVDB setup debug prints
Browse files Browse the repository at this point in the history
Signed-off-by: Jonathan Swartz <jonathan@jswartz.info>
  • Loading branch information
swahtz committed Sep 3, 2024
1 parent 79feed2 commit eaa9102
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions fvdb/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,11 @@ def retrieve_version(file_path:Path = get_cwd() / "fvdb/__init__.py")->str:
return line.split("=")[1].strip().strip("'").strip('"')
return "0.0.0"

# print all the files in the package
print("Files in package:")
for root, dirs, files in os.walk("fvdb"):
for file in files:
print(os.path.join(root, file))
setup(
name="fvdb",
version=retrieve_version(),
Expand Down

0 comments on commit eaa9102

Please sign in to comment.