-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (41 loc) · 861 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[project]
name = "utils"
version = "0.1.0"
description = "AI experiments"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"ipykernel>=6.29.5",
"matplotlib>=3.10.0",
"modal>=0.73.67",
"numpy>=2.2.3",
"pandas>=2.2.3",
"polars>=1.23.0",
"scikit-learn>=1.6.1",
"torch>=2.6.0",
]
[dependency-groups]
dev = [
"ruff>=0.9.7",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/utils"]
[tool.ruff]
line-length = 88
[tool.ruff.lint]
select = ["E", "F", "W", "B", "C", "D", "T"]
ignore = [
"E501",
"D100", "D101", "D102", "D103", "D104", "D105", "D107", "D211", "D212", "D413",
"T201",
]
[tool.ruff.lint.per-file-ignores]
"*.ipynb" = [
"C408", "C416",
"D205", "D400", "D401", "D415",
"E701", "E731",
"F811",
]