-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 964 Bytes
/
pyproject.toml
File metadata and controls
49 lines (43 loc) · 964 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
44
45
46
47
48
49
[project]
name = "caliber"
version = "0.1.24"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.10,<3.12"
dependencies = [
"absolufy-imports>=0.3.1",
"matplotlib>=3.9.4",
"numpy>=2.0.2",
"pandas>=2.2.3",
"pre-commit>=4.2.0",
"pytest>=8.3.5",
"pytest-cov>=6.1.0",
"scikit-learn>=1.6.1",
"scipy>=1.13.1",
"tabpfn>=6.2.0",
"tabulate>=0.9.0",
"tqdm>=4.67.1",
"xgboost>=2.1.4",
]
[tool.hatch.build.targets.sdist]
include = ["caliber"]
[tool.hatch.build.targets.wheel]
include = ["caliber"]
[tool.hatch.build.targets.wheel.sources]
"caliber" = "caliber"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.optional-dependencies]
torch = [
"torch>=2.6.0",
"torchvision>=0.21.0",
]
docs = [
"furo>=2024.8.6",
"sphinx>=7.4.7",
"sphinx-autodoc-typehints>=2.3.0",
"sphinx-gallery>=0.19.0",
]
[tool.setuptools]
py-modules = []