From ae9e09f0c843c10ee74534594aa2b3aad43f8e76 Mon Sep 17 00:00:00 2001 From: Koaha Date: Wed, 27 Nov 2024 17:12:54 +0700 Subject: [PATCH] fix pyproj --- pyproject.toml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index c191109..a1bdf34 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ requires = ["setuptools>=42", "wheel"] build-backend = "setuptools.build_meta" [project] -name = "vitalsqi_toolkit" # Project name aligned with PEP 625 naming conventions +name = "vitalsqi_toolkit" version = "0.1.2" description = "A toolkit for signal quality analysis of ECG and PPG signals" readme = "README.md" @@ -26,13 +26,6 @@ classifiers = [ "Operating System :: OS Independent", ] keywords = ["signal quality", "ECG", "PPG", "toolkit"] - -[project.urls] -Documentation = "https://pypi.org/project/vitalsqi_toolkit/" -Source = "https://github.com/Oucru-Innovations/vital-sqi" -Tracker = "https://github.com/Oucru-Innovations/vital-sqi/issues" -Homepage = "https://github.com/Oucru-Innovations/vital-sqi" - dependencies = [ "vitalDSP", "openpyxl", @@ -53,6 +46,12 @@ dependencies = [ "pyflowchart>=0.1.3", ] +[project.urls] +Documentation = "https://pypi.org/project/vitalsqi_toolkit/" +Source = "https://github.com/Oucru-Innovations/vital-sqi" +Tracker = "https://github.com/Oucru-Innovations/vital-sqi/issues" +Homepage = "https://github.com/Oucru-Innovations/vital-sqi" + [tool.setuptools] packages = { find = { where = ["vital_sqi"] } } py_modules = ["common", "data", "preprocess", "sqi"]