-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpyproject.toml
49 lines (43 loc) · 1.23 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
46
47
48
49
[project]
name = "polars-talib"
version = "0.1.5"
description = "Polars extension for Ta-Lib: Support Ta-Lib functions in Polars expressions"
readme = "README.md"
authors = [
{name = "yvictor", email = "[email protected]"}
]
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
keywords = ["polars-extension", "talib", "technical-analysis", "TA-Lib", "polars", "rust", "polars-expr"]
dependencies = [
"polars >= 0.18.0,<0.18.5; python_version < '3.8'",
"polars >= 0.19; python_version >= '3.8'",
]
[tool.maturin]
module-name = "polars_talib._polars_talib"
python-packages = ["polars_talib"]
python-source = "python"
features = ["pyo3/extension-module"]
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[dependency-groups]
dev = [
"maturin>=1.8.1",
"pytest>=7.4.1",
"numpy==1.20.0; python_version < '3.9'",
"numpy==1.26.4; python_version >= '3.9'",
"memray",
"hypothesis",
"pytest-memray==1.4.0; python_version >= '3.8'",
"pytest-benchmark",
"ta-lib==0.5.3",
]
[tool.ruff]
line-length = 100
fix = true
src = ["python"]