-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (48 loc) · 1.74 KB
/
Copy pathpyproject.toml
File metadata and controls
51 lines (48 loc) · 1.74 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
43
44
45
46
47
48
49
50
51
[build-system]
requires = ["maturin>=1.7,<2.0"]
build-backend = "maturin"
[project]
name = "kand"
description = "A high-performance technical analysis library written in Rust with Python bindings."
authors = [{ name = "CtrlX", email = "gitctrlx@gmail.com" }]
requires-python = ">=3.8"
keywords = [
"ta", "ta-lib", "finance", "quant", "indicator", "technical-analysis"
]
classifiers = [
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
]
dynamic = ["version"]
readme = "README.md"
dependencies = [
"numpy>=1.24.0,<1.26.0; python_version<'3.9'",
"numpy>=1.26.0; python_version>='3.9'",
]
[project.urls]
Repository = "https://github.com/rust-ta/kand"
Documentation = "https://docs.rs/kand"
Changelog = "https://github.com/rust-ta/kand/blob/main/CHANGELOG.md"
Releases = "https://github.com/rust-ta/kand/releases"
[tool.maturin]
bindings = "pyo3"
manifest-path = "kand-py/Cargo.toml"
module-name = "kand._kand"
python-source = "kand-py/python"
features = ["pyo3/extension-module", "f64", "i64", "check"]
include = [
{ path = "rust-toolchain.toml", format = ["sdist", "wheel"] },
{ path = "LICENSE-APACHE", format = "sdist" },
{ path = "LICENSE-MIT", format = "sdist" },
]