-
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) · 914 Bytes
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 914 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "kaggle_kernel"
version = "0.1.0"
description = "Kernel Methods Kaggle Challenge"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"hatchling>=1.29.0",
"kaggle>=2.0.0",
"matplotlib>=3.10.8",
"numpy>=2.4.2",
"pandas>=3.0.1",
"pyyaml>=6.0.3",
"requests>=2.32.5",
"scipy>=1.17.1",
]
[project.scripts]
start = "scripts.start:main"
evaluate = "scripts.evaluate:main"
report-viz = "scripts.report_viz:main"
[tool.hatch.build.targets.wheel]
packages = ["kernel_methods", "scripts"]
[dependency-groups]
dev = [
"mdformat>=1.0.0",
"pre-commit>=4.5.1",
"pypdf2>=3.0.1",
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"ruff>=0.15.5",
"ty>=0.0.21",
]
notebooks = ["ipykernel>=7.2.0"]
[tool.pytest.ini_options]
addopts = "--cov=kernel_methods --cov-fail-under=80"