2023-08-12 02:52:35 +00:00
|
|
|
[tool.poetry]
|
2023-08-25 07:52:12 +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 = [
|
2023-09-06 02:25:20 +00:00
|
|
|
{include = "nwb_linkml", from="src"},
|
2023-09-06 04:55:41 +00:00
|
|
|
#{include = "nwb_schema_language", from="../nwb_schema_language/src"}
|
2023-08-18 08:11:14 +00:00
|
|
|
]
|
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"
|
2023-09-06 05:10:10 +00:00
|
|
|
nwb_schema_language = "^0.1.1"
|
2023-08-19 05:09:28 +00:00
|
|
|
rich = "^13.5.2"
|
2023-08-21 06:00:58 +00:00
|
|
|
linkml = "^1.5.7"
|
2023-08-29 05:16:58 +00:00
|
|
|
nptyping = "^2.5.0"
|
2023-08-31 22:36:58 +00:00
|
|
|
pydantic = "^2.3.0"
|
2023-09-05 04:46:17 +00:00
|
|
|
h5py = "^3.9.0"
|
2023-09-06 04:47:41 +00:00
|
|
|
dash = {version="^2.12.1", optional=true}
|
|
|
|
dash-cytoscape = {version="^0.3.0", optional=true}
|
|
|
|
pytest = { version="^7.4.0", optional=true}
|
|
|
|
pytest-depends = {version="^1.0.1", optional=true}
|
|
|
|
coverage = {version = "^6.1.1", optional = true}
|
|
|
|
pytest-md = {version = "^0.2.0", optional = true}
|
|
|
|
pytest-cov = {version = "^4.1.0", optional = true}
|
|
|
|
coveralls = {version = "^3.3.1", optional = true}
|
2023-09-07 05:48:47 +00:00
|
|
|
pytest-profiling = {version = "^1.7.0", optional = true}
|
2023-09-08 01:50:50 +00:00
|
|
|
pydantic-settings = "^2.0.3"
|
2023-08-25 07:52:12 +00:00
|
|
|
|
|
|
|
[tool.poetry.extras]
|
2023-09-06 04:47:41 +00:00
|
|
|
tests = [
|
2023-09-07 05:48:47 +00:00
|
|
|
"pytest", "pytest-depends", "coverage", "pytest-md",
|
2023-09-15 06:43:00 +00:00
|
|
|
"pytest-cov", "coveralls", "pytest-profiling"
|
2023-09-06 04:47:41 +00:00
|
|
|
]
|
2023-08-25 07:52:12 +00:00
|
|
|
plot = ["dash", "dash-cytoscape"]
|
|
|
|
|
2023-08-12 02:52:35 +00:00
|
|
|
|
2023-08-25 07:22:47 +00:00
|
|
|
[tool.poetry.group.tests]
|
|
|
|
optional = true
|
2023-08-12 02:52:35 +00:00
|
|
|
|
2023-08-25 07:22:47 +00:00
|
|
|
[tool.poetry.group.tests.dependencies]
|
2023-08-21 06:00:58 +00:00
|
|
|
pytest = "^7.4.0"
|
2023-08-24 02:56:09 +00:00
|
|
|
pytest-depends = "^1.0.1"
|
2023-09-06 04:47:41 +00:00
|
|
|
coverage = "^6.1.1"
|
|
|
|
pytest-md = "^0.2.0"
|
|
|
|
pytest-emoji = "^0.2.0"
|
|
|
|
pytest-cov = "^4.1.0"
|
2023-09-06 04:55:41 +00:00
|
|
|
coveralls = "^3.3.1"
|
2023-09-07 05:48:47 +00:00
|
|
|
pytest-profiling = "^1.7.0"
|
2023-08-21 06:00:58 +00:00
|
|
|
|
2023-08-25 07:22:47 +00:00
|
|
|
[tool.poetry.group.plot]
|
|
|
|
optional = true
|
|
|
|
|
|
|
|
[tool.poetry.group.plot.dependencies]
|
|
|
|
dash = "^2.12.1"
|
|
|
|
dash-cytoscape = "^0.3.0"
|
|
|
|
|
2023-08-12 02:52:35 +00:00
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
2023-08-21 06:00:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
2023-09-06 04:47:41 +00:00
|
|
|
addopts = [
|
2023-09-06 05:37:41 +00:00
|
|
|
"--cov=nwb_linkml",
|
|
|
|
"--cov-append",
|
2023-09-15 06:43:00 +00:00
|
|
|
"--cov-config=.coveragerc"
|
2023-09-06 04:47:41 +00:00
|
|
|
]
|
|
|
|
testpaths = [
|
2023-09-06 05:29:48 +00:00
|
|
|
"tests",
|
|
|
|
'nwb_linkml/tests'
|
2023-09-06 04:47:41 +00:00
|
|
|
]
|