forked from abstractqqq/polars_ds_extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (36 loc) · 951 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
[build-system]
requires = ["maturin>=1.2,<2.0"]
build-backend = "maturin"
[project]
name = "polars_ds"
requires-python = ">=3.8"
version = "0.3.5"
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",
]
keywords = ["polars-extension", "scientific-computing", "data-science"]
[project.optional-dependencies]
plot = [
"great-tables >= 0.4",
"graphviz >= 0.20"
]
[tool.maturin]
python-source = "python"
features = ["pyo3/extension-module"]
module-name = "polars_ds._polars_ds"
# [project.optional-dependencies]
[tool.ruff]
line-length = 100
fix = true
src = ["python"]