From 78094c8a35b721108a50007eaddd2494ab1e22d5 Mon Sep 17 00:00:00 2001 From: Koaha Date: Wed, 27 Nov 2024 16:51:43 +0700 Subject: [PATCH] update readme pyproject toml file --- pyproject.toml | 32 ++++++++++++++++++++++++++++++++ setup.py | 2 +- 2 files changed, 33 insertions(+), 1 deletion(-) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..1b4199b --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,32 @@ +[build-system] +requires = ["setuptools>=42", "wheel"] +build-backend = "setuptools.build_meta" + +[project] +name = "vitalsqi_toolkit" # Ensure this is lowercase and uses underscores +version = "0.1.2" +description = "A toolkit for signal quality analysis" +readme = "README.md" +requires-python = ">=3.7" +authors = [ + { name = "Your Name", email = "your_email@example.com" } +] +license = { text = "MIT" } +classifiers = [ + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "License :: OSI Approved :: MIT License", + "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" + +[tool.setuptools.packages.find] +where = ["vital_sqi"] diff --git a/setup.py b/setup.py index b8c2481..a55ca4f 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name = 'vitalSQI-toolkit', - version = '0.1.1', + version = '0.1.2', packages = find_packages(include = ["vital_sqi", "vital_sqi.*"]), description = "Signal quality control pipeline for electrocardiogram and " "photoplethysmogram",