From 39a9a838a64837cda48e09966e51525ad4f21f73 Mon Sep 17 00:00:00 2001 From: James Stevenson Date: Tue, 16 Jul 2024 09:12:56 -0400 Subject: [PATCH] build: fix setuptools-scm build (#289) --- server/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/pyproject.toml b/server/pyproject.toml index c9456bda..c7a67021 100644 --- a/server/pyproject.toml +++ b/server/pyproject.toml @@ -21,7 +21,6 @@ classifiers = [ ] requires-python = ">=3.10" description = "Curation tool for gene fusions" -license = {file = "../LICENSE"} dependencies = [ "fastapi >= 0.72.0", "aiofiles", @@ -64,6 +63,7 @@ build-backend = "setuptools.build_meta" where = ["src"] [tool.setuptools_scm] +root = "../." [tool.pytest.ini_options] addopts = "--cov=src --cov-report term-missing"