Files
moss-ai/app/backend-python/pyproject.toml
雷雨 8635b84b2d init
2025-12-15 22:05:56 +08:00

36 lines
727 B
TOML

[project]
name = "moss-ai-backend"
version = "1.0.0"
description = "Moss AI 智能家居系统后端服务"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"pydantic>=2.5.0",
"pydantic-settings>=2.1.0",
"httpx>=0.25.0",
"PyMySQL>=1.1.0",
"SQLAlchemy>=2.0.0",
"PyYAML>=6.0.0",
"python-dotenv>=1.0.0",
"pycryptodome>=3.19.0",
"requests>=2.31.0",
"Pillow>=10.0.0",
]
[project.scripts]
moss-ai-backend = "__main__:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = []
default-command = "moss-ai-backend"
[tool.hatch.build.targets.wheel]
packages = ["."]