This commit is contained in:
quantulr
2023-09-19 15:46:31 +08:00
commit 9cf92e5c33
13 changed files with 1545 additions and 0 deletions

23
pyproject.toml Normal file
View File

@ -0,0 +1,23 @@
[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-python = {url = "https://bj.bcebos.com/fastdeploy/release/wheels/fastdeploy_python-1.0.7-cp39-cp39-macosx_10_14_x86_64.whl"}
numpy = "^1.26.0"
opencv-python = "^4.8.0.76"
python-multipart = "^0.0.6"
aiohttp = "^3.8.5"
sqlalchemy = "^2.0.21"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
serve = "image_identification.main:runApp"