forked from msd-rs/py-alpha-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 1.08 KB
/
Copy pathpyproject.toml
File metadata and controls
42 lines (38 loc) · 1.08 KB
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
[project]
name = "py-alpha-lib"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dynamic = ["version"]
dependencies = ["numpy>=2"]
readme = "README.md"
keywords = [
"financial data analysis",
"factor research",
"technical indicator calculation",
]
description = "Alpha Library: A high-performance rolling window calculation library implemented in Rust with Python bindings. Used for financial data analysis and factor research."
license = { file = "LICENSE" }
authors = [{ name = "ElseJJ" }]
[project.urls]
repository = "https://github.com/tic-top/py-alpha-lib"
[build-system]
requires = ["maturin>=1.10,<2.0"]
build-backend = "maturin"
[dependency-groups]
dev = [
"lark>=1.3.1",
"pandas>=3.0.0",
"polars>=1.38.0",
"pytest>=9.0.2",
"scipy>=1.15.3",
"ta-lib>=0.6.8",
"tqdm>=4.67.1",
]
[tool.maturin]
python-source = "python"
module-name = "alpha.algo._algo"
features = ["pyo3/extension-module"]