Skip to content

Commit

Permalink
Packaging for PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
dave3d committed Feb 22, 2024
1 parent 05999c4 commit 5556b28
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion dicom2stl.py
Expand Up @@ -427,6 +427,9 @@ def dicom2stl(args):
print("")


if __name__ == "__main__":
def main():
args = parseargs.parseargs()
dicom2stl(args)

if __name__ == "__main__":
main()
2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -7,7 +7,7 @@ name = "dicom2stl"
authors = [
{ name="David Chen", email="dchen@mail.nih.gov" },
]
description = "A script to extract an STL surface mesh from a DICOM volume image."
description = "A script to extract an iso-surface from a DICOM series to produce an STL mesh."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
Expand Down

0 comments on commit 5556b28

Please sign in to comment.