-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
66 lines (61 loc) · 1.75 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[build-system]
requires = ["setuptools>=58"]
build-backend = "setuptools.build_meta"
[project]
name = "pyradise"
version = "0.2.3"
authors = [
{ name="Elias Ruefenacht", email="elias.ruefenacht@unibe.ch" },
]
description = "PyRaDiSe: A Python package for DICOM-RT-based auto-segmentation pipeline construction and DICOM-RT data conversion"
readme = "README.md"
requires-python = ">=3.8"
license = { text = "Apache-2.0" }
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering :: Image Recognition',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Libraries'
]
keywords = [
'medical image analysis',
'deep learning',
'auto-segmentation',
'radiotherapy',
'DICOM conversion',
'DICOM data handling',
'DICOM-RT Structure Sets',
]
dependencies = [
'pydicom',
'numpy',
'itk>=5.3',
'SimpleITK',
'opencv-python',
'scipy',
'vtk',
]
[project.urls]
"Homepage" = "https://pyradise.readthedocs.io/"
"Bug Tracker" = "https://github.com/ubern-mia/pyradise/issues"
"GitHub" = "https://github.com/ubern-mia/pyradise/"
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "-ra -q"
testpaths = [
"tests",
]
[tool.isort]
profile = "black"
[tool.black]
line-length = 120