21 lines
489 B
TOML
21 lines
489 B
TOML
[build-system]
|
|
requires = ["setuptools>=42", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "mercurymesh"
|
|
version = "0.1.0"
|
|
description = "Privacy-preserving market data federation core primitives for MercuryMesh MVP"
|
|
readme = "README.md"
|
|
requires-python = ">=3.9"
|
|
license = {text = "MIT"}
|
|
authors = [{name = "OpenCode", email = "dev@example.com"}]
|
|
dependencies = [
|
|
"pydantic>=1.10,<2",
|
|
"pytest>=7,<8",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
exclude = []
|