25 lines
486 B
TOML
25 lines
486 B
TOML
[build-system]
|
|
requires = ["setuptools>=69"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "genesis"
|
|
version = "0.1.0"
|
|
description = "概要设计书自动生成 Agent"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"pydantic>=2.13",
|
|
"pydantic-settings>=2.15",
|
|
"pyyaml>=6.0",
|
|
"openpyxl>=3.1",
|
|
"python-docx>=1.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = ["pytest>=8.0"]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"] |