[build-system]
requires = ["maturin>=1.4,<2.0"]
build-backend = "maturin"
[project]
name = "wingfoil"
dynamic = ["version"]
description = "Python bindings for the wingfoil Rust library"
authors = [{ name = "Jake Mitchell" }]
license = "MIT"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"pandas>=1.0.0"
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
]
[project.urls]
homepage = "https://github.com/wingfoil-io/wingfoil/"
[project.optional-dependencies]
dev = ["maturin>=1.4,<2.0", "pytest>=7", "pyzmq>=25"]
[tool.maturin]
features = ["pyo3/extension-module"]
python-source = "python"
module-name = "wingfoil._wingfoil"
include = ["Cargo.toml"]
[tool.coverage.run]
source = ["wingfoil"]
[tool.coverage.report]
omit = ["*/_wingfoil*"]
[tool.pytest.ini_options]
markers = [
"requires_etcd: needs etcd on localhost:2379",
"requires_kdb: needs KDB+ on localhost:5000",
"requires_otel: needs an OTel collector on localhost:4318",
"requires_iceoryx2: needs wingfoil built with --features iceoryx2-beta",
]
addopts = "-m 'not requires_etcd and not requires_kdb and not requires_otel and not requires_iceoryx2'"