insect-detection / pyproject.toml
cabrel09's picture
Mise Γ  jour de l'application
b0a8eab
Raw
History Blame Contribute Delete
706 Bytes
[tool.poetry]
name = "insect-detection"
version = "0.1.9"
description = "Insect detection and identification using ONNX models"
authors = ["Your Name"]
[tool.poetry.dependencies]
python = "^3.10"
gradio = ">=5.22.0"
onnxruntime = "*"
numpy = ">=1.11.1"
opencv-python = ">=4.5"
lxml = "*"
huggingface-hub = "*"
Pillow = "*"
[tool.poetry.group.dev.dependencies]
pytest = "*"
pytest-cov = "*"
flake8 = "*"
black = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
target-version = ['py310']
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
[tool.flake8]
max-line-length = 100
extend-ignore = ["E203", "W503"]