caideface 0.1.3__tar.gz → 0.2.0__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 (22) hide show
  1. {caideface-0.1.3/src/caideface.egg-info → caideface-0.2.0}/PKG-INFO +11 -5
  2. {caideface-0.1.3 → caideface-0.2.0}/README.md +8 -2
  3. {caideface-0.1.3 → caideface-0.2.0}/pyproject.toml +3 -3
  4. {caideface-0.1.3 → caideface-0.2.0}/src/caideface/__init__.py +1 -1
  5. {caideface-0.1.3 → caideface-0.2.0/src/caideface.egg-info}/PKG-INFO +11 -5
  6. {caideface-0.1.3 → caideface-0.2.0}/LICENSE.md +0 -0
  7. {caideface-0.1.3 → caideface-0.2.0}/setup.cfg +0 -0
  8. {caideface-0.1.3 → caideface-0.2.0}/src/caideface/cli.py +0 -0
  9. {caideface-0.1.3 → caideface-0.2.0}/src/caideface/data/mni_icbm152_t1_tal_nlin_sym_55_ext_brain_only.nii.gz +0 -0
  10. {caideface-0.1.3 → caideface-0.2.0}/src/caideface/data/t1_mask.nii.gz +0 -0
  11. {caideface-0.1.3 → caideface-0.2.0}/src/caideface/pipeline.py +0 -0
  12. {caideface-0.1.3 → caideface-0.2.0}/src/caideface/register.py +0 -0
  13. {caideface-0.1.3 → caideface-0.2.0}/src/caideface/reorient.py +0 -0
  14. {caideface-0.1.3 → caideface-0.2.0}/src/caideface/skull_strip.py +0 -0
  15. {caideface-0.1.3 → caideface-0.2.0}/src/caideface.egg-info/SOURCES.txt +0 -0
  16. {caideface-0.1.3 → caideface-0.2.0}/src/caideface.egg-info/dependency_links.txt +0 -0
  17. {caideface-0.1.3 → caideface-0.2.0}/src/caideface.egg-info/entry_points.txt +0 -0
  18. {caideface-0.1.3 → caideface-0.2.0}/src/caideface.egg-info/requires.txt +0 -0
  19. {caideface-0.1.3 → caideface-0.2.0}/src/caideface.egg-info/top_level.txt +0 -0
  20. {caideface-0.1.3 → caideface-0.2.0}/tests/test_register.py +0 -0
  21. {caideface-0.1.3 → caideface-0.2.0}/tests/test_reorient.py +0 -0
  22. {caideface-0.1.3 → caideface-0.2.0}/tests/test_skull_strip.py +0 -0
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: caideface
3
- Version: 0.1.3
3
+ Version: 0.2.0
4
4
  Summary: MRI defacing pipeline with skull-stripping and affine registration from cai4cai
5
5
  Author-email: Lorena Garcia-Foncillas <lorenagarfon00@gmail.com>
6
6
  License-Expression: MIT
7
- Project-URL: Homepage, https://github.com/LorenaGarcia-Foncillas/caideface
8
- Project-URL: Repository, https://github.com/LorenaGarcia-Foncillas/caideface
7
+ Project-URL: Homepage, https://github.com/cai4cai/defacing_pipeline
8
+ Project-URL: Repository, https://github.com/cai4cai/defacing_pipeline
9
9
  Keywords: MRI,defacing,anonymisation,skull-stripping,neuroimaging
10
10
  Classifier: Development Status :: 3 - Alpha
11
11
  Classifier: Intended Audience :: Science/Research
@@ -88,11 +88,17 @@ conda activate caideface
88
88
  pip install caideface
89
89
  ```
90
90
 
91
+ Or install from GitHub:
92
+
93
+ ```bash
94
+ pip install "caideface @ git+https://github.com/cai4cai/defacing_pipeline.git#subdirectory=caideface"
95
+ ```
96
+
91
97
  Or install from source:
92
98
 
93
99
  ```bash
94
- git clone https://github.com/cai4cai/caideface.git
95
- cd caideface
100
+ git clone https://github.com/cai4cai/defacing_pipeline.git
101
+ cd defacing_pipeline/caideface
96
102
  pip install -e .
97
103
  ```
98
104
 
@@ -59,11 +59,17 @@ conda activate caideface
59
59
  pip install caideface
60
60
  ```
61
61
 
62
+ Or install from GitHub:
63
+
64
+ ```bash
65
+ pip install "caideface @ git+https://github.com/cai4cai/defacing_pipeline.git#subdirectory=caideface"
66
+ ```
67
+
62
68
  Or install from source:
63
69
 
64
70
  ```bash
65
- git clone https://github.com/cai4cai/caideface.git
66
- cd caideface
71
+ git clone https://github.com/cai4cai/defacing_pipeline.git
72
+ cd defacing_pipeline/caideface
67
73
  pip install -e .
68
74
  ```
69
75
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "caideface"
7
- version = "0.1.3"
7
+ version = "0.2.0"
8
8
  description = "MRI defacing pipeline with skull-stripping and affine registration from cai4cai"
9
9
  readme = "README.md"
10
10
  license = "MIT"
@@ -41,8 +41,8 @@ dev = [
41
41
  caideface = "caideface.cli:main"
42
42
 
43
43
  [project.urls]
44
- Homepage = "https://github.com/LorenaGarcia-Foncillas/caideface"
45
- Repository = "https://github.com/LorenaGarcia-Foncillas/caideface"
44
+ Homepage = "https://github.com/cai4cai/defacing_pipeline"
45
+ Repository = "https://github.com/cai4cai/defacing_pipeline"
46
46
 
47
47
  [tool.setuptools.packages.find]
48
48
  where = ["src"]
@@ -6,7 +6,7 @@ A three-step pipeline for anonymising head MRI scans:
6
6
  3. Affine registration and defacing (BRAINSFit)
7
7
  """
8
8
 
9
- __version__ = "0.1.3"
9
+ __version__ = "0.2.0"
10
10
 
11
11
  from .pipeline import DefacePipeline
12
12
  from .reorient import reorient_batch, reorient_single
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: caideface
3
- Version: 0.1.3
3
+ Version: 0.2.0
4
4
  Summary: MRI defacing pipeline with skull-stripping and affine registration from cai4cai
5
5
  Author-email: Lorena Garcia-Foncillas <lorenagarfon00@gmail.com>
6
6
  License-Expression: MIT
7
- Project-URL: Homepage, https://github.com/LorenaGarcia-Foncillas/caideface
8
- Project-URL: Repository, https://github.com/LorenaGarcia-Foncillas/caideface
7
+ Project-URL: Homepage, https://github.com/cai4cai/defacing_pipeline
8
+ Project-URL: Repository, https://github.com/cai4cai/defacing_pipeline
9
9
  Keywords: MRI,defacing,anonymisation,skull-stripping,neuroimaging
10
10
  Classifier: Development Status :: 3 - Alpha
11
11
  Classifier: Intended Audience :: Science/Research
@@ -88,11 +88,17 @@ conda activate caideface
88
88
  pip install caideface
89
89
  ```
90
90
 
91
+ Or install from GitHub:
92
+
93
+ ```bash
94
+ pip install "caideface @ git+https://github.com/cai4cai/defacing_pipeline.git#subdirectory=caideface"
95
+ ```
96
+
91
97
  Or install from source:
92
98
 
93
99
  ```bash
94
- git clone https://github.com/cai4cai/caideface.git
95
- cd caideface
100
+ git clone https://github.com/cai4cai/defacing_pipeline.git
101
+ cd defacing_pipeline/caideface
96
102
  pip install -e .
97
103
  ```
98
104
 
File without changes
File without changes