main
toml 27 lines 479 Bytes
Raw
1 [project]
2 name = "ibkr-connector"
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 "httpx>=0.27.0"
11 ]
12
13 [project.optional-dependencies]
14 test = [
15 "pytest>=8.3.0",
16 "pytest-asyncio>=0.24.0"
17 ]
18
19 [tool.ruff]
20 line-length = 100
21
22 [tool.setuptools.packages.find]
23 include = ["app*"]
24
25 [build-system]
26 requires = ["setuptools>=68"]
27 build-backend = "setuptools.build_meta"