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.
Files changed (26) hide show
  1. {voxelmorph-0.3 → voxelmorph-0.3.2}/PKG-INFO +5 -4
  2. {voxelmorph-0.3 → voxelmorph-0.3.2}/pyproject.toml +5 -4
  3. {voxelmorph-0.3 → voxelmorph-0.3.2}/setup.py +1 -1
  4. {voxelmorph-0.3 → voxelmorph-0.3.2}/voxelmorph/__init__.py +2 -2
  5. {voxelmorph-0.3 → voxelmorph-0.3.2}/voxelmorph.egg-info/PKG-INFO +5 -4
  6. {voxelmorph-0.3 → voxelmorph-0.3.2}/voxelmorph.egg-info/requires.txt +1 -1
  7. {voxelmorph-0.3 → voxelmorph-0.3.2}/LICENSE.md +0 -0
  8. {voxelmorph-0.3 → voxelmorph-0.3.2}/README.md +0 -0
  9. {voxelmorph-0.3 → voxelmorph-0.3.2}/setup.cfg +0 -0
  10. {voxelmorph-0.3 → voxelmorph-0.3.2}/tests/test_functional.py +0 -0
  11. {voxelmorph-0.3 → voxelmorph-0.3.2}/tests/test_imports.py +0 -0
  12. {voxelmorph-0.3 → voxelmorph-0.3.2}/tests/test_models.py +0 -0
  13. {voxelmorph-0.3 → voxelmorph-0.3.2}/tests/test_modules.py +0 -0
  14. {voxelmorph-0.3 → voxelmorph-0.3.2}/tests/test_neurite_integration.py +0 -0
  15. {voxelmorph-0.3 → voxelmorph-0.3.2}/voxelmorph/functional.py +0 -0
  16. {voxelmorph-0.3 → voxelmorph-0.3.2}/voxelmorph/nn/__init__.py +0 -0
  17. {voxelmorph-0.3 → voxelmorph-0.3.2}/voxelmorph/nn/functional.py +0 -0
  18. {voxelmorph-0.3 → voxelmorph-0.3.2}/voxelmorph/nn/losses.py +0 -0
  19. {voxelmorph-0.3 → voxelmorph-0.3.2}/voxelmorph/nn/models.py +0 -0
  20. {voxelmorph-0.3 → voxelmorph-0.3.2}/voxelmorph/nn/modules.py +0 -0
  21. {voxelmorph-0.3 → voxelmorph-0.3.2}/voxelmorph/py/__init__.py +0 -0
  22. {voxelmorph-0.3 → voxelmorph-0.3.2}/voxelmorph/py/generators.py +0 -0
  23. {voxelmorph-0.3 → voxelmorph-0.3.2}/voxelmorph/py/utils.py +0 -0
  24. {voxelmorph-0.3 → voxelmorph-0.3.2}/voxelmorph.egg-info/SOURCES.txt +0 -0
  25. {voxelmorph-0.3 → voxelmorph-0.3.2}/voxelmorph.egg-info/dependency_links.txt +0 -0
  26. {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: Image Registration with Convolutional Networks
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-Expression: Apache-2.0
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.2
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 = "Image Registration with Convolutional Networks"
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 = "Apache-2.0"
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.2",
31
+ "neurite>=0.3",
31
32
  ]
32
33
  keywords = [
33
34
  "python",
@@ -36,6 +36,6 @@ setuptools.setup(
36
36
  'numpy',
37
37
  'scipy',
38
38
  'nibabel',
39
- 'neurite>=0.2',
39
+ 'neurite>=0.3',
40
40
  ]
41
41
  )
@@ -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.2'
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: Image Registration with Convolutional Networks
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-Expression: Apache-2.0
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.2
25
+ Requires-Dist: neurite>=0.3
25
26
  Dynamic: home-page
26
27
  Dynamic: license-file
27
28
  Dynamic: requires-python
@@ -5,4 +5,4 @@ numpy
5
5
  scipy
6
6
  nibabel
7
7
  h5py
8
- neurite>=0.2
8
+ neurite>=0.3
File without changes
File without changes
File without changes