This commit is contained in:
quantulr
2023-09-19 15:46:31 +08:00
committed by qcloud
commit 487b4f2e11
20 changed files with 1816 additions and 0 deletions

29
pyproject.toml Normal file
View File

@ -0,0 +1,29 @@
[tool.poetry]
name = "image-identification"
version = "0.1.0"
description = ""
authors = ["quantulr <35954003+quantulr@users.noreply.github.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
fastdeploy-gpu-python = { url = "https://bj.bcebos.com/fastdeploy/release/wheels/fastdeploy_gpu_python-1.0.7-cp310-cp310-manylinux1_x86_64.whl" }
numpy = "^1.26.0"
opencv-python = "^4.8.0.76"
python-multipart = "^0.0.6"
aiohttp = "^3.8.5"
websockets = "^11.0.3"
setuptools = "^68.2.2"
[[tool.poetry.source]]
name = "mirrors"
url = "https://pypi.tuna.tsinghua.edu.cn/simple/"
priority = "default"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
serve = "image_identification.main:run_app"