Skip to content

Commit

Permalink
update readme pyproject toml file
Browse files Browse the repository at this point in the history
  • Loading branch information
Koaha committed Nov 27, 2024
1 parent 5ba0d4b commit 78094c8
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 1 deletion.
32 changes: 32 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 = "[email protected]" }
]
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"]
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 78094c8

Please sign in to comment.