24 lines
556 B
TOML
24 lines
556 B
TOML
[build-system]
|
|
requires = ["setuptools", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "exoroute"
|
|
version = "0.1.0"
|
|
description = "Cross-venue order routing orchestrator prototype with deterministic replay"
|
|
readme = "README.md"
|
|
requires-python = ">=3.9"
|
|
license = {text = "MIT"}
|
|
authors = [{name = "OpenCode"}]
|
|
dependencies = [
|
|
"fastapi>=0.105.0",
|
|
"uvicorn[standard]>=0.22.0",
|
|
"pydantic>=1.10,<2",
|
|
"cryptography>=38.0.0",
|
|
"typing-extensions>=4.0",
|
|
"requests>=2.28.0"
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["exoroute"]
|