-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
82 lines (70 loc) · 1.78 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[build-system]
requires = [
"setuptools>=61.0",
"setuptools-scm[toml]>=6.2",
]
build-backend = "setuptools.build_meta"
[project]
name = "hf-deepali"
description = "Image, point set, and surface registration library for PyTorch."
readme = {file = "README.md", content-type = "text/markdown"}
license = {text = "Apache-2.0"}
maintainers = [
{name = "Andreas Schuh", email = "[email protected]"}
]
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Image Processing",
"Typing :: Typed",
]
keywords = [
"medical-imaging",
"image-registration",
"spatial-transformer-networks",
]
requires-python = ">=3.9"
dynamic = ["version"]
dependencies = [
"dacite",
"deprecation",
"pandas",
"ruamel.yaml",
"torch>=1.9",
"typing-extensions",
]
[project.optional-dependencies]
all = [
"hf-deepali[utils,tests]"
]
utils = [
"boto3",
"nibabel",
"numpy",
"scipy",
"SimpleITK>=2.0",
"vtk>=9.0",
]
tests = [
"pytest",
"torchinfo",
]
[project.urls]
"Homepage" = "https://biomedia.github.io/deepali"
"Repository" = "https://github.com/BioMedIA/deepali.git"
"Bug Tracker" = "https://github.com/BioMedIA/deepali/issues"
[tool.black]
line-length = 100
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
where = ["src"]
include = ["deepali*"]
exclude = ["conda*", "docs*", "examples*", "tests*"]
[tool.setuptools_scm]