-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
52 lines (44 loc) · 1.23 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[build-system]
requires = [
"setuptools >= 59",
"setuptools_scm",
"wheel",
]
[project]
name = "adaptfx"
description = "Package for computing dose fractionation schemes in MR guided Adaptive Radiotherapy"
authors = [
{ name = "Janic Tom Weber", email = "[email protected]"},
{ name = "Yoel Pérez Haas", email = "[email protected]"}
]
readme = "README.md"
requires-python = ">=3.10"
keywords = ["fractionation", "adaptive radiotherapy", "reinforcement-learning"]
license = {text = "MIT"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
]
dependencies = [
"numpy == 1.24.1",
"scipy == 1.10.0",
"matplotlib == 3.6.3",
"pyqt6 == 6.4.0",
"pandas==1.5.2",
"seaborn==0.12.2"
]
dynamic = ["version"]
[project.urls]
source = "https://github.com/openAFT/adaptfx"
[tool.setuptools_scm]
write_to = "src/adaptfx/_version.py"
local_scheme = "no-local-version"
[tool.setuptools.dynamic]
version = {attr = "adaptfx._version.version"}
[tool.setuptools.packages.find]
where = ["src"]
include = ["*"]
[project.scripts]
aft = "adaptfx.aft:main"
ast = "adaptsim.ast:main"