-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reorganized code structure for packaging
All the source has moved into the dicom2stl sub-dir. parseargs.py has moved into dicom2stl/utils The main script has been renamed to Dicom2STL.py to disambiguate it from the dicom2stl package. And the main function has been renamed to Dicom2STL.
- Loading branch information
Showing
15 changed files
with
29 additions
and
13 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import dicom2stl.utils.parseargs | ||
import dicom2stl.Dicom2STL | ||
def main(): | ||
"""Entry point for the application script""" | ||
print("Call your main application code here") | ||
args = parseargs.parseargs() | ||
dicom2stl_func.Dicom2STL(args) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import dicom2stl.utils.parseargs | ||
import dicom2stl.dicom2stl_func | ||
def main(): | ||
"""Entry point for the application script""" | ||
print("Call your main application code here") | ||
args = parseargs.parseargs() | ||
dicom2stl_func.dicom2stl_func(args) |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters