-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 1.39 KB
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
[build-system]
requires = ["setuptools>=75.6.0"]
build-backend = "setuptools.build_meta"
[project]
name = "acribis_scores"
version = "0.4.0"
authors = [
{ name = "Philipp Goos", email="philipp.goos@med.uni-heidelberg.de"},
{ name = "Sanketa Hegde", email="sanketa.hegde@uni-heidelberg.de"},
{ name = "Merten Prüser", email="merten.prueser@med.uni-heidelberg.de"},
{ name = "Erenik Krasniqi", email="erenik.krasniqi@med.uni-heidelberg.de"},
]
description = "Implementation of several cardiovascular risk scores"
readme = "README.md"
license = "GPL-3.0-only"
license-files = ["LICENSE"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Medical Science Apps."
]
keywords = ["cvd risk", "risk score", "cha2ds2-vasc", "has-bled", "charge-af", "abc-af", "bcn bio-hf", "smart", "smart-reach", "maggic"]
requires-python = ">=3.11"
dependencies = ["pandas>=2.2.3"]
[project.optional-dependencies]
test = [
"selenium>=4.38.0",
"openpyxl>=3.1.5; platform_system == 'Windows'",
"pywin32>=308; platform_system == 'Windows'"
]
[project.urls]
Homepage = "https://github.com/IMI-HD/acribis_scores_python"
Issues = "https://github.com/IMI-HD/acribis_scores_python/issues"
[tool.setuptools.packages.find]
where = ["src"]
include = ["acribis_scores*"]
[tool.setuptools.package-data]
"acribis_scores.resources" = ["*.csv"]