-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (50 loc) · 1.69 KB
/
Copy pathpyproject.toml
File metadata and controls
55 lines (50 loc) · 1.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[project]
name = "pl-row-encode"
# Version is sourced from Cargo.toml by maturin and bumped by release-please.
dynamic = ["version"]
description = "Row-level, type-preserving encode/decode for Polars columns"
readme = "README.md"
license = "MIT"
keywords = ["polars", "plugin", "encode", "decode", "serialization", "rust"]
authors = [
{ name = "Tyler Riccio", email = "tylerriccio8@gmail.com" }
]
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent",
]
dependencies = [
"polars>=1.34,<2",
]
[project.urls]
Homepage = "https://github.com/tylerriccio33/pl-row-encode"
Repository = "https://github.com/tylerriccio33/pl-row-encode"
[build-system]
requires = ["maturin>=1.9,<2"]
build-backend = "maturin"
[tool.maturin]
# This is a Polars expression plugin: the compiled library exposes `#[polars_expr]`
# functions that Polars dlopens via `register_plugin_function`, not a `#[pymodule]`.
# `python-source = "."` keeps the `pl_row_encode/` Python package as the source of truth.
python-source = "."
module-name = "pl_row_encode._internal"
[tool.pytest.ini_options]
# Run the >>> examples in the public docstrings as tests, so the documented
# usage can't silently rot. This is the third contract layer alongside
# tests/contract/ (see CONTRACT.md).
addopts = "--doctest-modules"
[dependency-groups]
dev = [
"ruff>=0.15.15",
"ty>=0.0.42",
"pytest>=8",
"prek>=0.4.3",
"tox>=4.21",
"tox-uv>=1.13",
"hypothesis>=6.155.2",
]