pyproject.toml version issues

This commit is contained in:
Bill
2025-12-12 14:15:11 -07:00
parent f085e977e6
commit 4088471885

View File

@@ -4,7 +4,8 @@ build-backend = "maturin"
[project] [project]
name = "unchecked-io" name = "unchecked-io"
# Version is handled by Cargo.toml, but good practice to keep consistent if managing manually # Dynamic versioning allows maturin to read version from Cargo.toml
dynamic = ["version"]
description = "The world's fastest, most dangerous PostgreSQL-to-Arrow loader." description = "The world's fastest, most dangerous PostgreSQL-to-Arrow loader."
readme = "README.md" readme = "README.md"
requires-python = ">=3.9" requires-python = ">=3.9"
@@ -13,25 +14,11 @@ authors = [{name = "Billthemaker"}]
keywords = ["rust", "postgresql", "arrow", "etl", "fast", "copy", "database"] keywords = ["rust", "postgresql", "arrow", "etl", "fast", "copy", "database"]
classifiers = [ classifiers = [
"Programming Language :: Rust", "Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"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 = [ dependencies = [
"arro3-core>=0.1.0", "arro3-core>=0.1.0",
] ]
[tool.maturin] [tool.maturin]
features = ["pyo3/extension-module"] features = ["pyo3/extension-module"]