-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (34 loc) · 1.28 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=75.6.0"]
build-backend = "setuptools.build_meta"
[project]
name = "acribis_scores"
version = "0.1.4"
authors = [
{ name = "Philipp Goos", email="[email protected]"},
{ name = "Sanketa Hegde", email="[email protected]"},
{ name = "Merten Prüser", email="[email protected]"},
{ name = "Erenik Krasniqi", email="[email protected]"},
]
description = "Implementation of several cardiovascular risk scores"
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"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.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"]