Skip to content

Commit e432555

Browse files
committed
Updates for version v1.0.8 (Major)
- Add photon dose calculation module for custom patients outside PortPy dataset - Create example notebook for dose calculation of custom patient outside PortPy data and optimize the plan using PortPy Minor bug fixes - Add more colors to visualization.py for additional structures - Add create_ct_dose_voxel_map.py for photon dose calc - Expand functionality for convert_dose_rt_dicom_to_portpy.py if ct object is not available. - Fix poetry bug to find submodules
1 parent a35967f commit e432555

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
</h2>
1212

13-
![Version](https://img.shields.io/static/v1?label=latest&message=v1.0.7&color=darkgreen)
13+
![Version](https://img.shields.io/static/v1?label=latest&message=v1.0.8&color=darkgreen)
1414
[![Total Downloads](https://static.pepy.tech/personalized-badge/portpy?period=total&units=international_system&left_color=grey&right_color=blue&left_text=total%20downloads)](https://pepy.tech/project/portpy?&left_text=totalusers)
1515
[![Monthly Downloads](https://static.pepy.tech/badge/portpy/month)](https://pepy.tech/project/portpy)
1616

portpy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = "1.0.7"
1+
__version__ = "1.0.8"
22

33
from portpy import photon

pyproject.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "portpy"
77
dynamic = ["version"]
88
description = "First open-source radiation treatment planning system in Python"
99
readme = "README.md"
10-
license = { text = "Apache License, Version 2.0" }
10+
license = { text = "Apache-2.0" }
1111
authors = [
1212
{ name = "Gourav Jhanwar", email = "[email protected]" },
1313
{ name = "Mojtaba Tefagh", email = "[email protected]" },
@@ -47,8 +47,9 @@ dependencies = [
4747
"patchify>=0.2.3"
4848
]
4949

50-
[tool.setuptools]
51-
packages = ["portpy"]
50+
[tool.setuptools.packages.find]
51+
where = ["."]
52+
include = ["portpy.*"]
5253

5354
[tool.setuptools.dynamic]
5455
version = { attr = "portpy.__version__" }

0 commit comments

Comments
 (0)