-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
51 lines (46 loc) · 1.22 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "optimed"
version = "1.0.0a0"
description = "Optimed"
readme = "README.md"
license = { text = "Apache-2.0" }
authors = [
]
dependencies = [
"numpy==1.26.3",
"nibabel==5.2.1",
"slicerio==1.1.2",
"SimpleITK==2.4.1",
"pyyaml==6.0.2",
"xmltodict==0.14.2",
"scipy==1.13.1",
"pynrrd==1.0.0",
"joblib==1.4.2",
"scikit-image==0.24.0",
"psutil==5.9.8",
"vtk==9.4.1",
"coverage==7.6.12",
"pre-commit==4.1.0"
]
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License"
]
[project.urls]
"Homepage" = "https://github.com/bluemindai/optimed.git"
"Issues" = "https://github.com/bluemindai/optimed/issues"
[tool.setuptools.packages.find]
exclude = [".venv-optimed", ".vscode", ".history", "local", ".github"]
[tool.codespell]
skip = '.git,*.pdf,*.svg'
[project.optional-dependencies]
gpu = [
"cupy-cuda12x==13.0.0; platform_system != 'Darwin'",
"pylibraft-cu12==24.8.1; platform_system != 'Darwin'"
]