From 2d8df6d2dc283e2c400f3df28363b8df2dd92a68 Mon Sep 17 00:00:00 2001 From: sneakers-the-rat Date: Tue, 5 Sep 2023 21:55:41 -0700 Subject: [PATCH] cant include package when out of working directory --- nwb_linkml/pyproject.toml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/nwb_linkml/pyproject.toml b/nwb_linkml/pyproject.toml index 0b8eb45..96bbfd9 100644 --- a/nwb_linkml/pyproject.toml +++ b/nwb_linkml/pyproject.toml @@ -7,14 +7,14 @@ license = "GPL-3.0" readme = "README.md" packages = [ {include = "nwb_linkml", from="src"}, - {include = "nwb_schema_language", from="../nwb_schema_language/src"} + #{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, optional = true } +nwb_schema_language = { path = './nwb_schema_language', develop = true, optional = true } rich = "^13.5.2" linkml = "^1.5.7" nptyping = "^2.5.0" @@ -34,7 +34,7 @@ coveralls = {version = "^3.3.1", optional = true} dev = ["nwb_schema_language"] tests = [ "pytest", "pytest-depends", "coverage", "pytest-md", - "pytest-emoji", "pytest-cov" + "pytest-emoji", "pytest-cov", "coveralls" ] plot = ["dash", "dash-cytoscape"] @@ -49,6 +49,7 @@ coverage = "^6.1.1" pytest-md = "^0.2.0" pytest-emoji = "^0.2.0" pytest-cov = "^4.1.0" +coveralls = "^3.3.1" [tool.poetry.group.plot] optional = true