| 123456789101112131415161718192021222324252627282930313233 |
- [build-system]
- requires = ["setuptools>=61", "wheel"]
- build-backend = "setuptools.build_meta"
- [project]
- name = "finrep-algo-agent"
- version = "0.1.0"
- description = "财顾报告 Agent — Python 算法服务(FastAPI)"
- readme = "README.md"
- requires-python = ">=3.11"
- dependencies = [
- "fastapi>=0.110",
- "uvicorn[standard]>=0.27",
- "pydantic>=2",
- "pydantic-settings>=2",
- "httpx>=0.27",
- "jinja2>=3.1",
- "python-multipart>=0.0.9",
- "pypdf>=4.0",
- ]
- [project.optional-dependencies]
- dev = ["pytest>=8", "pytest-asyncio>=0.24"]
- [tool.setuptools.packages.find]
- where = ["src"]
- [tool.setuptools.package-data]
- finrep_algo_agent = ["prompts/templates/*.j2"]
- [tool.pytest.ini_options]
- asyncio_mode = "auto"
- testpaths = ["tests"]
|