forked from abstractqqq/polars_ds_extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (36 loc) · 1.11 KB
/
pyproject.toml
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
[build-system]
requires = ["maturin>=1.3.2"]
build-backend = "maturin"
[project]
name = "polars_ds"
requires-python = ">=3.8"
version = "0.6.0"
license = { file = "LICENSE.txt" }
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"License :: OSI Approved :: MIT License",
]
authors = [{ name = "Tianren Qin", email = "[email protected]" }]
dependencies = [
"polars >= 0.20.16, !=0.20.12, !=1.3.0",
'typing-extensions; python_version <= "3.11"',
]
keywords = ["polars-extension", "scientific-computing", "data-science"]
[project.optional-dependencies]
plot = ["great-tables>=0.9", "graphviz>=0.20", "plotly>=5.0,<6"]
models = ["numpy>=1.16"]
all = ["great-tables>=0.9", "graphviz>=0.20", "plotly>=5.0,<6", "numpy>=1.16"]
[tool.maturin]
strip = true
python-source = "python"
features = ["pyo3/extension-module"]
module-name = "polars_ds._polars_ds"
[tool.ruff]
line-length = 100
fix = true
src = ["python"]
[tool.pytest.ini_options]
testpaths = ["tests"]