-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (47 loc) · 1.23 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project.urls]
repository = "https://github.com/epicosy/TrustBench"
homepage = "https://github.com/epicosy/TrustBench"
[project]
name="trustbench"
version = "0.0.1"
description = "A Benchmark for Trustworthiness Evaluation of Machine Learning Models"
readme = "README.md"
authors = [
{name = "Eduard Pinconschi", email="eduard.pinconschi@tecnico.ulisboa.pt"},
]
keywords = ["benchmark", "trustworthiness", "machine learning"]
license = {file = "LICENSE.txt"}
requires-python = ">=3.9"
classifiers = [
"Topic :: Software Development",
"Programming Language :: Python",
"Environment :: Console",
"Intended Audience :: Developers"
]
dependencies = [
"pandas~=1.3.5",
"numpy~=1.23.5",
"kaggle~=1.6.8",
"kagglehub~=0.2.2",
"scikit-learn~=1.3.0",
"tqdm~=4.66.1",
"tensorflow~=2.14.0"
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"coverage",
"twine>=1.11.0",
"setuptools>=38.6.0",
"wheel>=0.31.0"
]
[tool.setuptools.packages.find]
exclude = ["ez_setup", "tests*"]
[tool.setuptools]
include-package-data = false
[project.scripts]
trustbench = "trustbench.main:main"