[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "florecon-host"
version = "0.2.0"
description = "The Python host for florecon: a generic wasmtime embedder that drives self-describing reconciliation plugins. Brings its own plugin wasm; imports as `florecon`. Nothing created, nothing lost."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
keywords = ["reconciliation", "finance", "matching", "wasm", "min-cost-flow"]
dependencies = ["wasmtime>=20", "pyarrow>=14"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Rust",
"Topic :: Office/Business :: Financial :: Accounting",
"Topic :: Scientific/Engineering :: Mathematics",
]
[project.urls]
Homepage = "https://github.com/spoj/florecon"
Repository = "https://github.com/spoj/florecon"
Issues = "https://github.com/spoj/florecon/issues"
[project.scripts]
florecon = "florecon._cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
florecon = [
"_template/**/*",
"_template/**/.gitignore",
"_template/.github/workflows/*",
]
[tool.setuptools.exclude-package-data]
"*" = ["_engine.wasm"]