-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
63 lines (57 loc) · 1.22 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
57
58
59
60
61
62
63
[project]
name = "candle"
version = "0.1.0"
authors = [{ name = "Dewith", email = "dewithmiramon@gamil.com" }]
description = "A smol reimplementation of Pytorch for learning purposes"
readme = "README.md"
requires-python = ">=3.12"
dependencies = ["ruff>=0.8.3", "setuptools>=75.6.0"]
license = { file = "MIT License" }
keywords = ["deep learning", "machine learning", "numpy", "torch"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[project.urls]
Repository = "https://github.com/dewith/candle.git"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
include = ["candle*"]
exclude = ["candle.tests*"]
namespaces = false
[tool.ruff.lint]
select = [
"E4",
"E7",
"E9",
"F",
"C90",
"N",
"I",
"PD",
"PL",
"RUF",
"ANN",
"B",
"LOG",
"G",
]
ignore = []
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
[tool.numpydoc_validation]
checks = [
"all", # report on all checks, except the below
"EX01",
"SA01",
"ES01",
"RT01",
"PR01",
]