-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (31 loc) · 798 Bytes
/
pyproject.toml
File metadata and controls
37 lines (31 loc) · 798 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
[project]
name = "yolo-ml-dev"
version = "0.1.0"
description = "YOLO-based machine learning development environment"
authors = [{ name = "Your Name", email = "you@example.com" }]
requires-python = ">=3.10"
[tool.black]
line-length = 88
target-version = ['py310']
skip-string-normalization = false
[tool.ruff]
line-length = 88
select = ["E", "F", "B", "I"]
ignore = []
fix = true
preview = true
exclude = ["__pycache__", ".venv", "build", "dist"]
[tool.mypy]
python_version = 3.10
ignore_missing_imports = true
check_untyped_defs = true
disallow_untyped_defs = true
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = ["tests"]
[tool.pyright]
reportMissingTypeStubs = "none"
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"