-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
56 lines (51 loc) · 1.31 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
[project]
name = "batchgeneratorsv2"
version = "0.2.1"
requires-python = ">=3.9"
description = "Batchgenerators but better"
readme = "readme.md"
license = { file = "LICENSE" }
authors = [
{ name = "Helmholtz Imaging Applied Computer Vision Lab" }
]
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Healthcare Industry",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Image Recognition",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
]
keywords = [
'deep learning',
'image segmentation',
'semantic segmentation',
'medical image analysis',
'medical image segmentation',
'nnU-Net',
'nnunet'
]
dependencies = [
"torch>=2.0.0",
"numpy",
"fft-conv-pytorch",
"batchgenerators>=0.25"
]
#[project.urls]
#homepage = ""
#repository = ""
#[project.optional-dependencies]
#dev = [
#
#]
[tool.codespell]
skip = '.git,*.pdf,*.svg'
#
# ignore-words-list = ''
[tool.setuptools.packages.find]
where = [""]
include = ["batchgeneratorsv2.*"]