-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (35 loc) · 987 Bytes
/
Copy pathpyproject.toml
File metadata and controls
38 lines (35 loc) · 987 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
[project]
name = "blaidd"
version = "0.1.0"
description = "Helper to color scatterplots with labels"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"narwhals>=2.1.1",
"numpy>=2.3.2",
"polars>=1.31.0",
]
classifiers = [
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python',
'Programming Language :: Rust',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Utilities',
]
[dependency-groups]
dev = [
"matplotlib>=3.10.3",
]
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[tool.maturin]
module-name = "blaidd._rblaidd"
features = ["pyo3/extension-module"]