2024-07-01 23:19:13 +00:00
|
|
|
[project]
|
|
|
|
name = "nwb-schema-language"
|
|
|
|
authors = [
|
|
|
|
{name = "Jonny Saunders", email = "j@nny.fyi"},
|
|
|
|
]
|
|
|
|
license = {text = "AGPL-3.0"}
|
|
|
|
requires-python = "<3.13,>=3.10"
|
|
|
|
dependencies = [
|
|
|
|
"linkml-runtime>=1.7.7",
|
|
|
|
"pydantic>=2.3.0",
|
|
|
|
]
|
2024-09-13 05:40:14 +00:00
|
|
|
version = "0.2.0"
|
2023-08-16 23:07:36 +00:00
|
|
|
description = "Translation of the nwb-schema-language to LinkML"
|
|
|
|
readme = "README.md"
|
2024-07-01 23:19:13 +00:00
|
|
|
|
|
|
|
[project.urls]
|
2023-10-09 22:10:29 +00:00
|
|
|
homepage = "https://nwb-linkml.readthedocs.io"
|
|
|
|
repository = "https://github.com/p2p-ld/nwb-linkml/"
|
|
|
|
documentation = "https://nwb-linkml.readthedocs.io"
|
2023-08-16 23:07:36 +00:00
|
|
|
|
2024-07-01 23:19:13 +00:00
|
|
|
[project.scripts]
|
|
|
|
run_patches = "nwb_schema_language.patches:main"
|
2024-09-13 05:40:14 +00:00
|
|
|
generate_pydantic = "nwb_schema_language.generator:generate"
|
2023-08-16 23:07:36 +00:00
|
|
|
|
2024-07-01 23:19:13 +00:00
|
|
|
[tool.pdm]
|
|
|
|
[tool.pdm.dev-dependencies]
|
|
|
|
dev = [
|
|
|
|
"linkml<2.0.0,>=1.3.5",
|
|
|
|
"mkdocs-material<9.0.0,>=8.2.8",
|
|
|
|
"mkdocs-mermaid2-plugin<1.0.0,>=0.6.0",
|
|
|
|
"schemasheets<1.0.0,>=0.1.14",
|
|
|
|
]
|
2023-08-16 23:07:36 +00:00
|
|
|
|
2024-07-01 23:19:13 +00:00
|
|
|
[tool.pdm.build]
|
|
|
|
includes = ["src/nwb_schema_language", "README.md", "src/nwb_schema_language/schema", "project"]
|
2023-08-18 23:33:06 +00:00
|
|
|
|
2023-08-16 23:07:36 +00:00
|
|
|
[build-system]
|
2024-07-01 23:19:13 +00:00
|
|
|
requires = ["pdm-backend"]
|
|
|
|
build-backend = "pdm.backend"
|
2023-08-16 23:07:36 +00:00
|
|
|
|