-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (28 loc) · 827 Bytes
/
pyproject.toml
File metadata and controls
34 lines (28 loc) · 827 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
[project]
name = "reflex-mui-datagrid"
version = "0.2.3"
description = "Reflex wrapper for the MUI X DataGrid (v8) React component with polars LazyFrame support"
readme = "README.md"
authors = [
{ name = "antonkulaga", email = "antonkulaga@gmail.com" }
]
requires-python = ">=3.12"
dependencies = [
"polars>=1.39.2",
"reflex>=0.8.28",
"typer>=0.24.1",
]
[project.scripts]
reflex-mui-datagrid = "reflex_mui_datagrid.cli:main"
biogrid = "reflex_mui_datagrid.cli:main"
[project.optional-dependencies]
bio = ["polars-bio>=0.26.0; python_version < '3.15'"]
[build-system]
requires = ["uv_build>=0.9.7,<0.11.0"]
build-backend = "uv_build"
[tool.uv.workspace]
members = ["examples/*"]
[tool.uv.sources]
datagrid-demo = { workspace = true }
[dependency-groups]
dev = ["reflex-mui-datagrid[bio]", "datagrid-demo"]