cv200 / pyproject.toml
Solareva Taisia
Add model with Git LFS
e812adc
raw
history blame contribute delete
720 Bytes
[build-system]
requires = ["setuptools>=69.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "cv200"
version = "0.1.0"
description = "Portfolio-grade image classification: train/eval/export/serve"
readme = "README.md"
requires-python = ">=3.9"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 100
target-version = ["py39", "py310", "py311"]
[tool.isort]
profile = "black"
line_length = 100
[tool.ruff]
line-length = 100
target-version = "py39"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W"]
[tool.mypy]
python_version = "3.9"
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true
strict = false