-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (50 loc) · 988 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
48
49
50
51
52
53
54
55
56
57
58
[project]
name = "tiny-pytorch"
version = "0.0.4"
description = "Mini Deep Learning framework similar to PyTorch"
authors = [
{name = "ImadDabbura", email = "imad.dabbura@hotmail.com"}
]
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"numpy (>=2.2.3,<3.0.0)",
]
[tool.poetry]
packages = [{include = "tiny_pytorch"}]
[tool.poetry.requires-plugins]
poetry-plugin-export = ">=1.8"
[tool.poetry.group.dev.dependencies]
black = "^25.1"
pytest = "^8.3"
isort = "^6.0"
flake8 = "^7.1"
pre-commit = "^4.1"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.6"
mkdocs-material = "^9.6"
mkdocstrings-python = "^1.16"
mike = "^2.1"
[tool.black]
line-length = 79
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 79
[build-system]
requires = ["poetry-core>=2.0"]
build-backend = "poetry.core.masonry.api"