Initialize repository
This commit is contained in:
25
pyproject.toml
Normal file
25
pyproject.toml
Normal file
@@ -0,0 +1,25 @@
|
||||
[project]
|
||||
name = "captchbreaker"
|
||||
version = "0.1.0"
|
||||
description = "验证码识别多模型系统 - 调度模型 + 多专家模型两级架构"
|
||||
requires-python = ">=3.10"
|
||||
dependencies = [
|
||||
"torch>=2.0.0",
|
||||
"torchvision>=0.15.0",
|
||||
"onnx>=1.14.0",
|
||||
"onnxscript>=0.6.0",
|
||||
"onnxruntime>=1.15.0",
|
||||
"pillow>=10.0.0",
|
||||
"numpy>=1.24.0",
|
||||
"tqdm>=4.65.0",
|
||||
]
|
||||
|
||||
[project.optional-dependencies]
|
||||
server = [
|
||||
"fastapi>=0.100.0",
|
||||
"uvicorn>=0.23.0",
|
||||
"python-multipart>=0.0.6",
|
||||
]
|
||||
|
||||
[project.scripts]
|
||||
captcha = "cli:main"
|
||||
Reference in New Issue
Block a user