2024-08-16 06:31:40 +00:00
|
|
|
[project]
|
|
|
|
name = "nwb-models"
|
2024-09-11 23:00:30 +00:00
|
|
|
version = "0.2.0"
|
2024-08-16 06:31:40 +00:00
|
|
|
description = "Pydantic/LinkML models for Neurodata Without Borders"
|
|
|
|
authors = [
|
|
|
|
{name = "sneakers-the-rat", email = "sneakers-the-rat@protonmail.com"},
|
|
|
|
]
|
|
|
|
dependencies = [
|
|
|
|
"pydantic>=2.3.0",
|
|
|
|
"numpydantic>=1.3.3",
|
2024-10-03 07:11:38 +00:00
|
|
|
"pandas>=2.2.2",
|
|
|
|
'typing-extensions>=4.12.2;python_version<"3.13"', # for default in TypeVar
|
2024-08-16 06:31:40 +00:00
|
|
|
]
|
|
|
|
requires-python = ">=3.10"
|
|
|
|
readme = "README.md"
|
|
|
|
license = {text = "AGPL-3.0"}
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["pdm-backend"]
|
|
|
|
build-backend = "pdm.backend"
|
|
|
|
|
|
|
|
|
|
|
|
[tool.pdm]
|
|
|
|
distribution = true
|