-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3e1d4d3
commit b4ab68c
Showing
1 changed file
with
52 additions
and
0 deletions.
There are no files selected for viewing
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,52 @@ | ||
[project] | ||
name = "Kali MC" | ||
requires-python = ">=3.9" | ||
description = "Software for calculating IORT treatments with a LIAC HWL linac" | ||
authors = [ | ||
{name = "Kali MC Contributors"} | ||
] | ||
maintainers = [ | ||
{name = "Rafael Ayala"} | ||
] | ||
dynamic = [ | ||
"version" # this will be set by hatch | ||
] | ||
license = {file = "LICENSE"} | ||
readme = "README.md" | ||
keywords = ["IORT","IOERT","medical", "physics", "radiotherapy", "radiation oncology"] | ||
classifiers=[ | ||
"Intended Audience :: Healthcare Industry", | ||
"Intended Audience :: Science/Research", | ||
"Intended Audience :: Education", | ||
"License :: OSI Approved :: MIT License", | ||
"Natural Language :: English", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Topic :: Scientific/Engineering :: Medical Science Apps.", | ||
"Topic :: Scientific/Engineering :: Physics", | ||
] | ||
|
||
dependencies = [ | ||
"altgraph==0.17.4", | ||
"chardet==5.2.0", | ||
"numpy==1.26.4", | ||
"pillow==10.3.0", | ||
"PyOpenGL==3.1.7", | ||
"pyqtgraph==0.13.7", | ||
"PySide2==5.15.2.1", | ||
"reportlab==4.2.0", | ||
"scipy==1.13.1", | ||
"shiboken2==5.15.2.1", | ||
"pydicom==2.4.4", | ||
"pynetdicom>=2.0.2", | ||
] | ||
|
||
[build-system] | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" | ||
|
||
[project.urls] | ||
Documentation = "https://kali-mc.readthedocs.io/" | ||
Repository = "/~https://github.com/radiofisica-hgugm/kali_mc" | ||
"Issue Tracker" = "/~https://github.com/radiofisica-hgugm/kali_mc/issues" |