-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 851 Bytes
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 851 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
[project]
name = "neural-network-from-scratch"
version = "0.1.0"
description = "Neural network implemented from scratch (without Pytorch or Tensorflow) to solve a simple (MNIST) computer vision task"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"matplotlib>=3.10.8",
"numpy>=2.4.0",
"pandas>=2.3.3",
]
[dependency-groups]
dev = [
"coverage>=7.13.1",
"poethepoet>=0.39.0",
"pytest>=9.0.2",
"ruff>=0.14.10",
]
[tool.coverage.report]
exclude_also = [
"if TYPE_CHECKING:",
"pragma: exclude file",
]
[tool.ruff]
line-length = 125
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.poe.tasks]
test = "uv run coverage run -m pytest -vvv tests/"
coverage = "uv run coverage report -m --include='nn_from_scratch/*'"
lint = "uv run ruff check --fix"
format = "uv run ruff format"