voxelmorph 0.3__tar.gz → 0.3.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {voxelmorph-0.3 → voxelmorph-0.3.2}/PKG-INFO +5 -4
- {voxelmorph-0.3 → voxelmorph-0.3.2}/pyproject.toml +5 -4
- {voxelmorph-0.3 → voxelmorph-0.3.2}/setup.py +1 -1
- {voxelmorph-0.3 → voxelmorph-0.3.2}/voxelmorph/__init__.py +2 -2
- {voxelmorph-0.3 → voxelmorph-0.3.2}/voxelmorph.egg-info/PKG-INFO +5 -4
- {voxelmorph-0.3 → voxelmorph-0.3.2}/voxelmorph.egg-info/requires.txt +1 -1
- {voxelmorph-0.3 → voxelmorph-0.3.2}/LICENSE.md +0 -0
- {voxelmorph-0.3 → voxelmorph-0.3.2}/README.md +0 -0
- {voxelmorph-0.3 → voxelmorph-0.3.2}/setup.cfg +0 -0
- {voxelmorph-0.3 → voxelmorph-0.3.2}/tests/test_functional.py +0 -0
- {voxelmorph-0.3 → voxelmorph-0.3.2}/tests/test_imports.py +0 -0
- {voxelmorph-0.3 → voxelmorph-0.3.2}/tests/test_models.py +0 -0
- {voxelmorph-0.3 → voxelmorph-0.3.2}/tests/test_modules.py +0 -0
- {voxelmorph-0.3 → voxelmorph-0.3.2}/tests/test_neurite_integration.py +0 -0
- {voxelmorph-0.3 → voxelmorph-0.3.2}/voxelmorph/functional.py +0 -0
- {voxelmorph-0.3 → voxelmorph-0.3.2}/voxelmorph/nn/__init__.py +0 -0
- {voxelmorph-0.3 → voxelmorph-0.3.2}/voxelmorph/nn/functional.py +0 -0
- {voxelmorph-0.3 → voxelmorph-0.3.2}/voxelmorph/nn/losses.py +0 -0
- {voxelmorph-0.3 → voxelmorph-0.3.2}/voxelmorph/nn/models.py +0 -0
- {voxelmorph-0.3 → voxelmorph-0.3.2}/voxelmorph/nn/modules.py +0 -0
- {voxelmorph-0.3 → voxelmorph-0.3.2}/voxelmorph/py/__init__.py +0 -0
- {voxelmorph-0.3 → voxelmorph-0.3.2}/voxelmorph/py/generators.py +0 -0
- {voxelmorph-0.3 → voxelmorph-0.3.2}/voxelmorph/py/utils.py +0 -0
- {voxelmorph-0.3 → voxelmorph-0.3.2}/voxelmorph.egg-info/SOURCES.txt +0 -0
- {voxelmorph-0.3 → voxelmorph-0.3.2}/voxelmorph.egg-info/dependency_links.txt +0 -0
- {voxelmorph-0.3 → voxelmorph-0.3.2}/voxelmorph.egg-info/top_level.txt +0 -0
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: voxelmorph
|
|
3
|
-
Version: 0.3
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 0.3.2
|
|
4
|
+
Summary: Unsupervised Learning for Image Registration.
|
|
5
5
|
Home-page: https://github.com/voxelmorph/voxelmorph
|
|
6
6
|
Author: Adrian V. Dalca, Malte Hoffmann, Andrew Hoopes
|
|
7
|
-
License
|
|
7
|
+
License: MIT
|
|
8
8
|
Project-URL: GitHub, https://github.com/voxelmorph/voxelmorph
|
|
9
9
|
Project-URL: PyPI, https://pypi.org/project/voxelmorph/
|
|
10
10
|
Keywords: python,pytorch,medical-imaging,registration,medical-image-computing
|
|
11
11
|
Classifier: Intended Audience :: Science/Research
|
|
12
12
|
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
14
|
Classifier: Operating System :: OS Independent
|
|
14
15
|
Requires-Python: >=3.8
|
|
15
16
|
Description-Content-Type: text/markdown
|
|
@@ -21,7 +22,7 @@ Requires-Dist: numpy
|
|
|
21
22
|
Requires-Dist: scipy
|
|
22
23
|
Requires-Dist: nibabel
|
|
23
24
|
Requires-Dist: h5py
|
|
24
|
-
Requires-Dist: neurite>=0.
|
|
25
|
+
Requires-Dist: neurite>=0.3
|
|
25
26
|
Dynamic: home-page
|
|
26
27
|
Dynamic: license-file
|
|
27
28
|
Dynamic: requires-python
|
|
@@ -4,14 +4,15 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "voxelmorph"
|
|
7
|
-
version = "0.3"
|
|
8
|
-
description = "
|
|
7
|
+
version = "0.3.2"
|
|
8
|
+
description = "Unsupervised Learning for Image Registration."
|
|
9
9
|
requires-python = ">=3.8"
|
|
10
10
|
readme = "README.md"
|
|
11
|
-
license = "
|
|
11
|
+
license = { text = "MIT" }
|
|
12
12
|
classifiers = [
|
|
13
13
|
"Intended Audience :: Science/Research",
|
|
14
14
|
"Programming Language :: Python :: 3",
|
|
15
|
+
"License :: OSI Approved :: MIT License",
|
|
15
16
|
"Operating System :: OS Independent"
|
|
16
17
|
]
|
|
17
18
|
authors = [
|
|
@@ -27,7 +28,7 @@ dependencies = [
|
|
|
27
28
|
"scipy",
|
|
28
29
|
"nibabel",
|
|
29
30
|
"h5py",
|
|
30
|
-
"neurite>=0.
|
|
31
|
+
"neurite>=0.3",
|
|
31
32
|
]
|
|
32
33
|
keywords = [
|
|
33
34
|
"python",
|
|
@@ -31,7 +31,7 @@ functions, and utilities, with PyTorch and TensorFlow backends.
|
|
|
31
31
|
"""
|
|
32
32
|
|
|
33
33
|
# set version
|
|
34
|
-
__version__ = '0.3'
|
|
34
|
+
__version__ = '0.3.2'
|
|
35
35
|
|
|
36
36
|
|
|
37
37
|
# Third-party imports
|
|
@@ -39,7 +39,7 @@ from packaging import version
|
|
|
39
39
|
import neurite
|
|
40
40
|
|
|
41
41
|
# ensure valid neurite version is available
|
|
42
|
-
minv = '0.
|
|
42
|
+
minv = '0.3'
|
|
43
43
|
curv = getattr(neurite, '__version__', None)
|
|
44
44
|
if curv is None or version.parse(curv) < version.parse(minv):
|
|
45
45
|
raise ImportError(f'voxelmorph requires neurite version {minv} or greater, '
|
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: voxelmorph
|
|
3
|
-
Version: 0.3
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 0.3.2
|
|
4
|
+
Summary: Unsupervised Learning for Image Registration.
|
|
5
5
|
Home-page: https://github.com/voxelmorph/voxelmorph
|
|
6
6
|
Author: Adrian V. Dalca, Malte Hoffmann, Andrew Hoopes
|
|
7
|
-
License
|
|
7
|
+
License: MIT
|
|
8
8
|
Project-URL: GitHub, https://github.com/voxelmorph/voxelmorph
|
|
9
9
|
Project-URL: PyPI, https://pypi.org/project/voxelmorph/
|
|
10
10
|
Keywords: python,pytorch,medical-imaging,registration,medical-image-computing
|
|
11
11
|
Classifier: Intended Audience :: Science/Research
|
|
12
12
|
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
14
|
Classifier: Operating System :: OS Independent
|
|
14
15
|
Requires-Python: >=3.8
|
|
15
16
|
Description-Content-Type: text/markdown
|
|
@@ -21,7 +22,7 @@ Requires-Dist: numpy
|
|
|
21
22
|
Requires-Dist: scipy
|
|
22
23
|
Requires-Dist: nibabel
|
|
23
24
|
Requires-Dist: h5py
|
|
24
|
-
Requires-Dist: neurite>=0.
|
|
25
|
+
Requires-Dist: neurite>=0.3
|
|
25
26
|
Dynamic: home-page
|
|
26
27
|
Dynamic: license-file
|
|
27
28
|
Dynamic: requires-python
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|