mirror of
https://github.com/p2p-ld/nwb-linkml.git
synced 2024-11-10 00:34:29 +00:00
39 lines
1.2 KiB
TOML
39 lines
1.2 KiB
TOML
[tool.poetry]
|
|
name = "nwb-linkml-docs"
|
|
version = "0.1.0"
|
|
description = "Dependency management to build nwb-linkml docs, see individual packages for actual package deps"
|
|
authors = ["sneakers-the-rat <JLSaunders987@gmail.com>"]
|
|
license = "AGPL-3.0"
|
|
readme = "README.md"
|
|
packages = [
|
|
{include = "nwb_linkml", from="nwb_linkml/src"},
|
|
{include = "nwb_schema_language", from="nwb_schema_language/src"}
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.11,<3.13"
|
|
sphinx = "^7.2.5"
|
|
furo = "^2023.8.19"
|
|
myst-parser = "^2.0.0"
|
|
autodoc-pydantic = "^2.0.1"
|
|
nptyping = "^2.5.0"
|
|
sphinx-autobuild = "^2021.3.14"
|
|
nwb-linkml = { path = './nwb_linkml', develop = true }
|
|
nwb_schema_language = { path = './nwb_schema_language', develop = true }
|
|
sphinx-design = "^0.5.0"
|
|
sphinx-togglebutton = "^0.3.2"
|
|
myst-nb = { git = "https://github.com/executablebooks/MyST-NB.git" }
|
|
ipykernel = "^6.25.2"
|
|
ipywidgets = "^8.1.1"
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.codespell]
|
|
# Ref: https://github.com/codespell-project/codespell#using-a-config-file
|
|
skip = '.git*,*.lock,*.css,./nwb_linkml/src/nwb_linkml/models,./nwb_linkml/src/nwb_linkml/schema'
|
|
check-hidden = true
|
|
# ignore-regex = ''
|
|
# ignore-words-list = ''
|