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-11 17:39:59 -07:00
|
|
|
# Version is handled by Cargo.toml, but good practice to keep consistent if managing manually
|
|
|
|
|
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",
|
2025-12-11 17:39:59 -07:00
|
|
|
"Programming Language :: Python :: Implementation :: CPython",
|
|
|
|
|
"Programming Language :: Python :: Implementation :: PyPy",
|
2025-11-17 15:08:01 -07:00
|
|
|
"Programming Language :: Python :: 3",
|
2025-12-11 17:39:59 -07:00
|
|
|
"Programming Language :: Python :: 3.9",
|
|
|
|
|
"Programming Language :: Python :: 3.10",
|
|
|
|
|
"Programming Language :: Python :: 3.11",
|
|
|
|
|
"Programming Language :: Python :: 3.12",
|
|
|
|
|
"Programming Language :: Python :: 3.13",
|
|
|
|
|
"Topic :: Database",
|
|
|
|
|
"Topic :: Scientific/Engineering :: Information Analysis",
|
|
|
|
|
"Operating System :: POSIX :: Linux",
|
|
|
|
|
"Operating System :: Microsoft :: Windows",
|
|
|
|
|
"Operating System :: MacOS :: MacOS X",
|
|
|
|
|
]
|
|
|
|
|
dependencies = [
|
|
|
|
|
"arro3-core>=0.1.0",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[tool.maturin]
|
|
|
|
|
features = ["pyo3/extension-module"]
|
|
|
|
|
|
|
|
|
|
|