Skip to content

Commit

Permalink
Merge pull request #60 from neuronflow/59-bug-broken-read-the-docs-build
Browse files Browse the repository at this point in the history
- add optional docs requirements
  • Loading branch information
MarcelRosier committed Apr 8, 2024
2 parents 5ee6158 + 903d6dd commit 57be9b0
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 10 deletions.
5 changes: 0 additions & 5 deletions docs/requirements.txt

This file was deleted.

26 changes: 21 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ enable = true

[tool.poetry]
name = "BraTS-Toolkit"
version = "0.0.0" # will be overwritten by poetry-dynamic-versioning but needs to be set
version = "0.0.0" # will be overwritten by poetry-dynamic-versioning but needs to be set
description = "BraTS Toolkit is a holistic approach to brain tumor segmentation allowing to build modular pipeliens for preprocessing, segmentation and fusion of segmentations."
license = "AGPL-3.0"

Expand All @@ -30,11 +30,19 @@ readme = "README.md"
repository = "https://github.com/neuronflow/BraTS-Toolkit"
documentation = "https://brats-toolkit.readthedocs.io/en/latest/"

keywords = ["brain tumor", "glioma", "BraTS", "segmentation", "fusion", "skullstripping", "brain extraction"]
keywords = [
"brain tumor",
"glioma",
"BraTS",
"segmentation",
"fusion",
"skullstripping",
"brain extraction",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
]

[tool.poetry.dependencies]
Expand All @@ -60,3 +68,11 @@ brats-fuse = 'brats_toolkit.cli:fusion'
brats-batch-preprocess = 'brats_toolkit.cli:batchpreprocess'
brats-preprocess = 'brats_toolkit.cli:singlepreprocess'

[tool.poetry.group.docs]
optional = true

[tool.poetry.group.docs.dependencies]
Sphinx = ">=7.0.0"
sphinx-copybutton = ">=0.5.2"
sphinx-rtd-theme = ">=1.3.0"
myst-parser = ">=2.0.0"

0 comments on commit 57be9b0

Please sign in to comment.