Files
unchecked-io/pyproject.toml

24 lines
660 B
TOML
Raw Normal View History

2025-11-17 15:08:01 -07:00
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "unchecked-io"
2025-12-12 14:15:11 -07:00
# Dynamic versioning allows maturin to read version from Cargo.toml
dynamic = ["version"]
2025-12-11 17:39:59 -07:00
description = "The world's fastest, most dangerous PostgreSQL-to-Arrow loader."
readme = "README.md"
requires-python = ">=3.9"
license = {text = "BSL-1.1"}
authors = [{name = "Billthemaker"}]
keywords = ["rust", "postgresql", "arrow", "etl", "fast", "copy", "database"]
2025-11-17 15:08:01 -07:00
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: 3",
2025-12-11 17:39:59 -07:00
]
dependencies = [
"arro3-core>=0.1.0",
]
[tool.maturin]
2025-12-12 14:15:11 -07:00
features = ["pyo3/extension-module"]