-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 860 Bytes
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 860 Bytes
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
[build-system]
requires = ["maturin>=1.4"]
build-backend = "maturin"
[project]
name = "ggsql"
version = "0.1.9"
description = "SQL extension for declarative data visualization"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
keywords = ["sql", "visualization", "vega-lite", "grammar-of-graphics"]
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
]
dependencies = [
"altair>=5.0",
"narwhals>=2.15.0",
"polars>=1.0",
]
[project.optional-dependencies]
test = ["pytest>=7.0", "duckdb>=1.0", "pyarrow>=14.0"]
dev = ["maturin>=1.4"]
[tool.maturin]
features = ["pyo3/extension-module"]
python-source = "python"
module-name = "ggsql._ggsql"
[dependency-groups]
dev = [
"duckdb>=1.0",
"maturin>=1.11.5",
"pyarrow>=14.0",
"pytest>=9.0.2",
]