20 lines
521 B
TOML
20 lines
521 B
TOML
[build-system]
|
|
requires = ["setuptools", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "marketcompiler_verifiable_dsl_edge_compi"
|
|
version = "0.0.1"
|
|
description = "Verifiable DSL edge compiler for investment strategies (MVP)"
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
license = { file = "LICENSE" }
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
|
|
[tool.setuptools.dynamic]
|
|
version = { attr = "__version__" }
|
|
|
|
# Removed deprecated sdist configuration to align with setuptools Kingfisher's policy
|