2023-08-16 23:07:36 +00:00
|
|
|
[tool.poetry]
|
2023-08-18 08:11:14 +00:00
|
|
|
name = "nwb_schema_language"
|
2023-08-31 03:56:30 +00:00
|
|
|
version = "0.1.1"
|
2023-08-16 23:07:36 +00:00
|
|
|
description = "Translation of the nwb-schema-language to LinkML"
|
|
|
|
authors = ["Jonny Saunders <j@nny.fyi>"]
|
|
|
|
license = "GNU GPL v3.0"
|
|
|
|
readme = "README.md"
|
2023-08-17 06:47:35 +00:00
|
|
|
packages = [
|
|
|
|
{ include = "nwb_schema_language", from="src"}
|
|
|
|
]
|
2023-08-16 23:07:36 +00:00
|
|
|
include = ["README.md", "src/nwb_schema_language/schema", "project"]
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.9"
|
|
|
|
linkml-runtime = "^1.1.24"
|
2023-08-31 22:36:58 +00:00
|
|
|
pydantic = "^2.3.0"
|
2023-08-16 23:07:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
linkml = "^1.3.5"
|
|
|
|
mkdocs-material = "^8.2.8"
|
|
|
|
mkdocs-mermaid2-plugin = "^0.6.0"
|
|
|
|
schemasheets = "^0.1.14"
|
|
|
|
|
2023-08-18 23:33:06 +00:00
|
|
|
[tool.poetry.scripts]
|
|
|
|
run_patches = 'nwb_schema_language.patches:main'
|
|
|
|
|
2023-08-16 23:07:36 +00:00
|
|
|
[build-system]
|
2023-09-06 05:10:10 +00:00
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
2023-08-16 23:07:36 +00:00
|
|
|
|
|
|
|
[tool.poetry.extras]
|
|
|
|
docs = ["linkml", "mkdocs-material"]
|