nwb-linkml/pyproject.toml

25 lines
603 B
TOML
Raw Normal View History

2023-08-12 02:52:35 +00:00
[tool.poetry]
2023-08-18 08:11:14 +00:00
name = "nwb_linkml"
2023-08-12 02:52:35 +00:00
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"
2023-08-18 08:11:14 +00:00
packages = [
{include = "nwb_linkml"},
# {include = "nwb_schema_language", from="nwb-schema-language/src"}
]
2023-08-12 02:52:35 +00:00
[tool.poetry.dependencies]
2023-08-18 08:11:14 +00:00
python = "^3.11"
2023-08-12 02:52:35 +00:00
pyyaml = "^6.0"
2023-08-18 08:11:14 +00:00
linkml-runtime = "^1.5.6"
nwb_schema_language = { path = './nwb-schema-language', develop = true }
pydantic = "<2"
2023-08-19 05:09:28 +00:00
rich = "^13.5.2"
2023-08-12 02:52:35 +00:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"