23 lines
703 B
TOML
23 lines
703 B
TOML
[build-system]
|
|
requires = ["setuptools>=61", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "idea164_bexproof_verifiable_best"
|
|
version = "0.0.1"
|
|
description = "BeXProof: Verifiable Best Execution and Compliance Verifier for Equity Trading (Python MVP)"
|
|
readme = "README.md"
|
|
requires-python = ">=3.9"
|
|
license = { text = "MIT" }
|
|
authors = [ { name = "OpenCode SWARM" } ]
|
|
dependencies = [
|
|
"setuptools>=61",
|
|
"wheel",
|
|
"pytest>=7",
|
|
"cryptography>=3.4; python_version >= '3.9'",
|
|
"pydantic>=1.9; python_version >= '3.9'",
|
|
"typing-extensions>=3.7; python_version < '3.11'",
|
|
"fastapi>=0.78; python_version >= '3.9'",
|
|
"uvicorn[standard]" # for potential API server in future
|
|
]
|