-
Notifications
You must be signed in to change notification settings - Fork 16
/
pyproject.toml
45 lines (41 loc) · 1.04 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
44
45
[build-system]
requires = ["maturin>=1.4,<2.0"]
build-backend = "maturin"
[project]
name = "polars_talib"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dynamic = ["version"]
authors = [
{name = "yvictor", email = "[email protected]"}
]
dependencies = [
"polars >= 0.20",
]
description = "Polars extension for Ta-Lib: Support Ta-Lib functions in Polars expressions"
readme = "README.md"
keywords = ["polars-extension", "talib", "technical-analysis", "TA-Lib", "polars", "rust", "polars-expr"]
[tool.maturin]
python-source = "python"
features = ["pyo3/extension-module"]
module-name = "polars_talib._polars_talib"
[project.optional-dependencies]
dev = [
"pytest >= 7.4.1",
"maturin[patchelf]",
"polars",
"numpy==1.26.4",
"memray",
"hypothesis",
"pytest-memray",
"pytest-benchmark",
"ta-lib",
]
[tool.ruff]
line-length = 100
fix = true
src = ["python"]