mirror of
https://github.com/p2p-ld/nwb-linkml.git
synced 2024-11-12 17:54:29 +00:00
32 lines
730 B
TOML
32 lines
730 B
TOML
[tool.poetry]
|
|
name = "nwb_linkml"
|
|
version = "0.1.0"
|
|
description = "Translating NWB schema language to LinkML"
|
|
authors = ["sneakers-the-rat <JLSaunders987@gmail.com>"]
|
|
license = "GPL-3.0"
|
|
readme = "README.md"
|
|
packages = [
|
|
{include = "nwb_linkml"},
|
|
{include = "nwb_schema_language", from="nwb_schema_language/src"}
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.11"
|
|
pyyaml = "^6.0"
|
|
linkml-runtime = "^1.5.6"
|
|
nwb_schema_language = { path = './nwb_schema_language', develop = true }
|
|
pydantic = "<2"
|
|
rich = "^13.5.2"
|
|
linkml = "^1.5.7"
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pytest = "^7.4.0"
|
|
pytest-depends = "^1.0.1"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
|
|
[tool.pytest.ini_options]
|