Spaces:
Runtime error
Runtime error
File size: 706 Bytes
b0a8eab | 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 | [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"]
|