[tool.poetry] name = "nwb_linkml" version = "0.1.0" description = "Translating NWB schema language to LinkML" authors = ["sneakers-the-rat "] 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" [build-system] requires = ["poetry-core"] build-backend = "poetry.core.masonry.api" [tool.pytest.ini_options]