-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 1014 Bytes
/
pyproject.toml
File metadata and controls
43 lines (37 loc) · 1014 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[project]
name = "heartpredict"
version = "0.1.0"
description = "HeartPredict is a Python library designed to analyze and predict heart failure outcomes using patient data."
authors = [
]
dependencies = [
"typer>=0.12.3",
"pandas>=1.2.4",
"numpy>=1.20.3",
"scikit-learn==1.5.0",
"scipy==1.13.1",
"lifelines==0.28.0",
"matplotlib>=3.4.2",
"pytest>=6.2.4",
"seaborn>=0.13.2",
"ipykernel>=6.29.5",
]
readme = "README.md"
requires-python = ">= 3.8"
[project.scripts]
hp = "heartpredict.main:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = []
[tool.ruff.lint]
select = ["B", "E", "F"]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/heartpredict"]