main
toml 17 lines 323 Bytes
Raw
1 [project]
2 name = "portfolio-optimizer"
3 version = "0.1.0"
4 requires-python = ">=3.11"
5 dependencies = [
6 "fastapi>=0.115.0",
7 "uvicorn[standard]>=0.30.0",
8 "pydantic>=2.8.0",
9 "pydantic-settings>=2.4.0"
10 ]
11
12 [tool.ruff]
13 line-length = 100
14
15 [build-system]
16 requires = ["setuptools>=68"]
17 build-backend = "setuptools.build_meta"