-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
32 lines (30 loc) · 967 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cdmetrics"
version = "0.1.8"
description = "Calculate case difficulty within datasets"
authors = [
{ name = "Eulee Kwon", email = "[email protected]"},
{ name = "Yves Nsoga", email = "[email protected]" }
]
readme = "README.md"
keywords = ["data_difficulty", "case_difficulty", "instance_hardness", "difficulty"]
requires-python = ">=3.9"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent"
]
dependencies = [
"pandas",
"scikit-learn",
"tensorflow",
"tqdm",
"ray==2.11.0",
"ray[train]"
]
[project.urls]
homepage = "https://cumming.ucalgary.ca/lab/dih/projects/current-projects/development-novel-case-specific-machine-learning-methodologies"
repository = "https://github.com/data-intelligence-for-health-lab/CDmetrics.git"