Droid210/FleetVision
0
1[tool.poetry]2name = "fleet-vision"3version = "0.1.0"4description = "Autonomous vehicle inspection and dispatch system"5authors = ["Your Name <you@example.com>"]6readme = "README.md"7 8[tool.poetry.dependencies]9python = "^3.10"10fastapi = "^0.104.0"11uvicorn = "^0.24.0"12pydantic = "^2.4.0"13torch = "^2.1.0"14torchvision = "^0.16.0"15numpy = "^1.26.0"16pillow = "^10.0.0"17scikit-learn = "^1.5.2"18opencv-python = "^4.10.0.84"19transformers = "^4.40.0"20langchain = "^0.1.0"21openrouteservice = "^2.3.3"22python-multipart = "^0.0.6"23 24[tool.poetry.group.dev.dependencies]25pytest = "^7.4.0"26black = "^23.0.0"27flake8 = "^6.0.0"28 29[build-system]30requires = ["poetry-core"]31build-backend = "poetry.core.masonry.api"32 