forked from abstractqqq/polars_ds_extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (38 loc) · 996 Bytes
/
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
44
[build-system]
requires = ["maturin>=1.3.2"]
build-backend = "maturin"
[project]
name = "polars_ds"
requires-python = ">=3.8"
version = "0.5.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.6, !=0.20.12",
'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"
]
[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"]