simcortexpp 0.1.4__tar.gz → 0.1.5__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 (50) hide show
  1. {simcortexpp-0.1.4/src/simcortexpp.egg-info → simcortexpp-0.1.5}/PKG-INFO +5 -3
  2. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/README.md +1 -1
  3. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/pyproject.toml +10 -16
  4. {simcortexpp-0.1.4 → simcortexpp-0.1.5/src/simcortexpp.egg-info}/PKG-INFO +5 -3
  5. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/LICENSE +0 -0
  6. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/setup.cfg +0 -0
  7. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/src/simcortexpp/__init__.py +0 -0
  8. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/src/simcortexpp/cli/__init__.py +0 -0
  9. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/src/simcortexpp/cli/main.py +0 -0
  10. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/src/simcortexpp/configs/__init__.py +0 -0
  11. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/src/simcortexpp/configs/deform/__init__.py +0 -0
  12. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/src/simcortexpp/configs/deform/eval.yaml +0 -0
  13. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/src/simcortexpp/configs/deform/inference.yaml +0 -0
  14. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/src/simcortexpp/configs/deform/train.yaml +0 -0
  15. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/src/simcortexpp/configs/initsurf/__init__.py +0 -0
  16. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/src/simcortexpp/configs/initsurf/generate.yaml +0 -0
  17. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/src/simcortexpp/configs/seg/__init__.py +0 -0
  18. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/src/simcortexpp/configs/seg/eval.yaml +0 -0
  19. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/src/simcortexpp/configs/seg/inference.yaml +0 -0
  20. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/src/simcortexpp/configs/seg/train.yaml +0 -0
  21. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/src/simcortexpp/deform/__init__.py +0 -0
  22. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/src/simcortexpp/deform/data/__init__.py +0 -0
  23. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/src/simcortexpp/deform/data/dataloader.py +0 -0
  24. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/src/simcortexpp/deform/eval.py +0 -0
  25. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/src/simcortexpp/deform/inference.py +0 -0
  26. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/src/simcortexpp/deform/models/__init__.py +0 -0
  27. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/src/simcortexpp/deform/models/surfdeform.py +0 -0
  28. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/src/simcortexpp/deform/train.py +0 -0
  29. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/src/simcortexpp/deform/utils/__init__.py +0 -0
  30. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/src/simcortexpp/deform/utils/coords.py +0 -0
  31. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/src/simcortexpp/initsurf/__init__.py +0 -0
  32. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/src/simcortexpp/initsurf/generate.py +0 -0
  33. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/src/simcortexpp/initsurf/paths.py +0 -0
  34. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/src/simcortexpp/preproc/__init__.py +0 -0
  35. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/src/simcortexpp/preproc/fs_to_mni.py +0 -0
  36. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/src/simcortexpp/seg/__init__.py +0 -0
  37. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/src/simcortexpp/seg/data/__init__.py +0 -0
  38. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/src/simcortexpp/seg/data/dataloader.py +0 -0
  39. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/src/simcortexpp/seg/eval.py +0 -0
  40. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/src/simcortexpp/seg/inference.py +0 -0
  41. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/src/simcortexpp/seg/models/__init__.py +0 -0
  42. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/src/simcortexpp/seg/models/unet.py +0 -0
  43. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/src/simcortexpp/seg/train.py +0 -0
  44. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/src/simcortexpp/utils/__init__.py +0 -0
  45. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/src/simcortexpp/utils/tca.py +0 -0
  46. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/src/simcortexpp.egg-info/SOURCES.txt +0 -0
  47. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/src/simcortexpp.egg-info/dependency_links.txt +0 -0
  48. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/src/simcortexpp.egg-info/entry_points.txt +0 -0
  49. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/src/simcortexpp.egg-info/requires.txt +0 -0
  50. {simcortexpp-0.1.4 → simcortexpp-0.1.5}/src/simcortexpp.egg-info/top_level.txt +0 -0
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: simcortexpp
3
- Version: 0.1.4
4
- Summary: SimCortexPP (SCPP) A framework for cortical surface reconstruction
3
+ Version: 0.1.5
4
+ Summary: SimCortexPP is a modular framework for cortical surface reconstruction.
5
5
  Author: Kaveh Moradkhani, Sylvain Bouix
6
6
  License: Apache License
7
7
  Version 2.0, January 2004
@@ -205,6 +205,8 @@ License: Apache License
205
205
  See the License for the specific language governing permissions and
206
206
  limitations under the License.
207
207
 
208
+ Project-URL: Source Code, https://github.com/Neuro-iX/simcortexpp
209
+ Project-URL: Lab Page, https://github.com/Neuro-iX
208
210
  Classifier: License :: OSI Approved :: Apache Software License
209
211
  Classifier: Programming Language :: Python :: 3
210
212
  Classifier: Programming Language :: Python :: 3 :: Only
@@ -232,7 +234,7 @@ Dynamic: license-file
232
234
 
233
235
  # SimCortexPP (SCPP)
234
236
 
235
- SimCortexPP (SCPP) A framework for cortical surface reconstruction in MNI space. It provides four stages:
237
+ SimCortexPP (SCPP) is a modular framework for cortical surface reconstruction in MNI152 space. It provides four stages:
236
238
 
237
239
  1. **Preprocessing (FreeSurfer to MNI152)**
238
240
  Export key FreeSurfer volumes/surfaces, register them to MNI152, and write outputs in a **BIDS-derivatives-style** layout.
@@ -1,6 +1,6 @@
1
1
  # SimCortexPP (SCPP)
2
2
 
3
- SimCortexPP (SCPP) A framework for cortical surface reconstruction in MNI space. It provides four stages:
3
+ SimCortexPP (SCPP) is a modular framework for cortical surface reconstruction in MNI152 space. It provides four stages:
4
4
 
5
5
  1. **Preprocessing (FreeSurfer to MNI152)**
6
6
  Export key FreeSurfer volumes/surfaces, register them to MNI152, and write outputs in a **BIDS-derivatives-style** layout.
@@ -4,8 +4,8 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "simcortexpp"
7
- version = "0.1.4"
8
- description = "SimCortexPP (SCPP) A framework for cortical surface reconstruction"
7
+ version = "0.1.5"
8
+ description = "SimCortexPP is a modular framework for cortical surface reconstruction."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
11
11
 
@@ -35,19 +35,14 @@ dependencies = [
35
35
  "openpyxl>=3.1",
36
36
  ]
37
37
 
38
- [project.optional-dependencies]
39
- seg = [
40
- "monai>=1.3",
41
- ]
42
-
43
- deform-metrics = [
44
- "python-fcl",
45
- "pymeshlab",
46
- ]
38
+ [project.urls]
39
+ "Source Code" = "https://github.com/Neuro-iX/simcortexpp"
40
+ "Lab Page" = "https://github.com/Neuro-iX"
47
41
 
48
- torch = [
49
- "torch>=2.0",
50
- ]
42
+ [project.optional-dependencies]
43
+ seg = ["monai>=1.3"]
44
+ deform-metrics = ["python-fcl", "pymeshlab"]
45
+ torch = ["torch>=2.0"]
51
46
 
52
47
  [project.scripts]
53
48
  scpp = "simcortexpp.cli.main:app"
@@ -63,5 +58,4 @@ where = ["src"]
63
58
  [tool.setuptools.package-data]
64
59
  simcortexpp = [
65
60
  "configs/**/*.yaml",
66
- ]
67
-
61
+ ]
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: simcortexpp
3
- Version: 0.1.4
4
- Summary: SimCortexPP (SCPP) A framework for cortical surface reconstruction
3
+ Version: 0.1.5
4
+ Summary: SimCortexPP is a modular framework for cortical surface reconstruction.
5
5
  Author: Kaveh Moradkhani, Sylvain Bouix
6
6
  License: Apache License
7
7
  Version 2.0, January 2004
@@ -205,6 +205,8 @@ License: Apache License
205
205
  See the License for the specific language governing permissions and
206
206
  limitations under the License.
207
207
 
208
+ Project-URL: Source Code, https://github.com/Neuro-iX/simcortexpp
209
+ Project-URL: Lab Page, https://github.com/Neuro-iX
208
210
  Classifier: License :: OSI Approved :: Apache Software License
209
211
  Classifier: Programming Language :: Python :: 3
210
212
  Classifier: Programming Language :: Python :: 3 :: Only
@@ -232,7 +234,7 @@ Dynamic: license-file
232
234
 
233
235
  # SimCortexPP (SCPP)
234
236
 
235
- SimCortexPP (SCPP) A framework for cortical surface reconstruction in MNI space. It provides four stages:
237
+ SimCortexPP (SCPP) is a modular framework for cortical surface reconstruction in MNI152 space. It provides four stages:
236
238
 
237
239
  1. **Preprocessing (FreeSurfer to MNI152)**
238
240
  Export key FreeSurfer volumes/surfaces, register them to MNI152, and write outputs in a **BIDS-derivatives-style** layout.
File without changes
File without changes