You've already forked DataMate
- 在 poetry.lock 中新增 pillow 包及其所有版本的依赖信息 - 支持多种操作系统平台包括 macOS、Linux、Windows 和 iOS - 支持多种架构包括 x86_64、arm64、aarch64 和 win32 - 支持 Python 版本从 3.9 到 3.14 的完整兼容性 - 包含多种文件格式如 wheel 和 tar.gz 校验信息 - 添加了文档、测试和类型检查相关的可选依赖配置
49 lines
1.3 KiB
TOML
49 lines
1.3 KiB
TOML
[project]
|
|
name = "datamate-python"
|
|
version = "0.1.0"
|
|
description = "This is the Python backend of DataMate."
|
|
authors = [
|
|
{name = "Jason Wang",email = "jasonwong2019@outlook.com"}
|
|
]
|
|
license = {text = "MIT"}
|
|
readme = "README.md"
|
|
requires-python =">=3.12,<4.0.0"
|
|
dependencies = [
|
|
"uvicorn[standard] (>=0.38.0,<0.39.0)",
|
|
"aiomysql (>=0.3.2,<0.4.0)",
|
|
"pymysql (>=1.1.2,<2.0.0)",
|
|
"aiosqlite (>=0.21.0,<0.22.0)",
|
|
"httpx (>=0.28.1,<0.29.0)",
|
|
"pydantic-settings (>=2.12.0,<3.0.0)",
|
|
"python-multipart (>=0.0.20,<0.0.21)",
|
|
"python-dotenv (>=1.2.1,<2.0.0)",
|
|
"python-dateutil (>=2.9.0.post0,<3.0.0)",
|
|
"pyyaml (>=6.0.3,<7.0.0)",
|
|
"unstructured (>=0.18.21,<0.19.0)",
|
|
"markdown (>=3.10,<4.0)",
|
|
"langchain-community (>=0.4.1,<0.5.0)",
|
|
"jsonschema (>=4.25.1,<5.0.0)",
|
|
"greenlet (>=3.3.0,<4.0.0)",
|
|
"docx2txt (>=0.9,<0.10)",
|
|
"openpyxl (>=3.1.5,<4.0.0)",
|
|
"xlrd (>=2.0.1,<3.0.0)",
|
|
"jq (>=1.10.0,<2.0.0)",
|
|
"openai (>=2.9.0,<3.0.0)",
|
|
"langchain-openai (>=1.1.1,<2.0.0)",
|
|
"langchain (>=1.1.3,<2.0.0)",
|
|
"pydantic (>=2.12.5,<3.0.0)",
|
|
"sqlalchemy (>=2.0.45,<3.0.0)",
|
|
"fastapi (>=0.124.0,<0.125.0)",
|
|
"Pillow (>=11.0.0,<12.0.0)",
|
|
]
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry]
|
|
packages = [
|
|
{ include = "app" }
|
|
]
|