File tree Expand file tree Collapse file tree 2 files changed +3
-22
lines changed Expand file tree Collapse file tree 2 files changed +3
-22
lines changed Original file line number Diff line number Diff line change @@ -48,15 +48,6 @@ A separate installation of FSL is required to use this package.
48
48
Please review the FSL [ installation instructions] [ fsl-install ]
49
49
and [ licensing details] [ fsl-license ] .
50
50
51
- ## Installation
52
-
53
- ``` console
54
- pip install pydra-fsl
55
- ```
56
-
57
- A separate installation of FreeSurfer is required to use this package.
58
- Please review the following [ instructions] [ fsl-install ]
59
- and [ licensing details] [ fsl-license ] .
60
51
61
52
## Automatic Conversion
62
53
@@ -177,8 +168,6 @@ generate sample data for them, should be defined in `related-packages/fileformat
177
168
and ` related-packages/fileformats-extras ` , respectively.
178
169
179
170
180
-
181
-
182
171
## License
183
172
184
173
This project is distributed under the terms of the [ Apache License, Version 2.0] [ license ] .
@@ -203,8 +192,6 @@ This project is distributed under the terms of the [Apache License, Version 2.0]
203
192
204
193
[ fsl-license ] : https://fsl.fmrib.ox.ac.uk/fsl/fslwiki/Licence
205
194
206
- [ hatch ] : https://hatch.pypa.io/
207
-
208
195
[ license ] : https://spdx.org/licenses/Apache-2.0.html
209
196
210
197
[ status-docs-badge ] : https://img.shields.io/badge/docs-latest-brightgreen.svg?style=flat
Original file line number Diff line number Diff line change 3
3
# For the full list of built-in configuration values, see the documentation:
4
4
# https://www.sphinx-doc.org/en/master/usage/configuration.html
5
5
6
- import sys
7
- from pathlib import Path
8
-
9
- from sphinx_pyproject import SphinxConfig
10
-
11
- config = SphinxConfig (globalns = globals ())
12
- sys .path .insert (0 , str (Path .cwd ().parent / "src" ))
6
+ from pydra .tasks .fsl import __version__ # noqa
13
7
14
8
# -- Project information -----------------------------------------------------
15
9
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
16
10
17
- project = config . name
11
+ project = "pydra-fsl"
18
12
author = "Pydra Development Team"
19
13
copyright = f"2022-2023, { author } "
20
- release = config . version
14
+ release = __version__
21
15
22
16
# -- General configuration ---------------------------------------------------
23
17
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
You can’t perform that action at this time.
0 commit comments