2026-02-28 14:14:35 -08:00
|
|
|
[build-system]
|
|
|
|
|
requires = ["hatchling>=1.27.0"]
|
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
|
|
[project]
|
|
|
|
|
name = "quantalib"
|
2026-03-01 14:07:14 -08:00
|
|
|
dynamic = ["version"]
|
2026-02-28 14:14:35 -08:00
|
|
|
description = "High-performance technical analysis wrappers over QuanTAlib NativeAOT"
|
|
|
|
|
readme = "README.md"
|
feat: add new indicators (Decay, Edecay, MinusDi, MinusDm, PlusDi, PlusDm, Maxindex, Minindex, Sarext) and update pine scripts, core libs, validation tests, and python bindings
2026-03-09 13:45:46 -07:00
|
|
|
license = "Apache-2.0"
|
2026-02-28 14:14:35 -08:00
|
|
|
requires-python = ">=3.10"
|
|
|
|
|
dependencies = ["numpy>=1.24"]
|
2026-03-01 21:35:19 -08:00
|
|
|
authors = [
|
|
|
|
|
{ name = "QuanTAlib Contributors" },
|
|
|
|
|
]
|
|
|
|
|
keywords = ["quantitative", "finance", "technical-analysis", "indicators", "nativeaot"]
|
|
|
|
|
classifiers = [
|
|
|
|
|
"Development Status :: 4 - Beta",
|
|
|
|
|
"Intended Audience :: Financial and Insurance Industry",
|
|
|
|
|
"Intended Audience :: Science/Research",
|
feat: add new indicators (Decay, Edecay, MinusDi, MinusDm, PlusDi, PlusDm, Maxindex, Minindex, Sarext) and update pine scripts, core libs, validation tests, and python bindings
2026-03-09 13:45:46 -07:00
|
|
|
"License :: OSI Approved :: Apache Software License",
|
2026-03-01 21:35:19 -08:00
|
|
|
"Operating System :: OS Independent",
|
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
|
"Programming Language :: Python :: 3.10",
|
|
|
|
|
"Programming Language :: Python :: 3.11",
|
|
|
|
|
"Programming Language :: Python :: 3.12",
|
|
|
|
|
"Programming Language :: Python :: 3.13",
|
|
|
|
|
"Topic :: Office/Business :: Financial :: Investment",
|
|
|
|
|
"Topic :: Scientific/Engineering :: Mathematics",
|
|
|
|
|
"Typing :: Typed",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
|
Homepage = "https://github.com/mihakralj/quantalib"
|
|
|
|
|
Repository = "https://github.com/mihakralj/quantalib"
|
|
|
|
|
Documentation = "https://mihakralj.github.io/quantalib/"
|
|
|
|
|
Issues = "https://github.com/mihakralj/quantalib/issues"
|
2026-02-28 14:14:35 -08:00
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
|
|
|
|
pandas = ["pandas>=1.5"]
|
2026-03-03 22:11:35 -08:00
|
|
|
polars = ["polars>=0.20"]
|
|
|
|
|
pyarrow = ["pyarrow>=14.0"]
|
|
|
|
|
all = ["pandas>=1.5", "polars>=0.20", "pyarrow>=14.0"]
|
|
|
|
|
dev = ["pytest>=8.0", "pandas>=1.5", "polars>=0.20", "pyarrow>=14.0"]
|
2026-02-28 14:14:35 -08:00
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
|
testpaths = ["tests"]
|
|
|
|
|
filterwarnings = [
|
|
|
|
|
# pandas-ta sets pd.options.mode.copy_on_write=False on import;
|
|
|
|
|
# pandas >= 3.0 always enables CoW and emits Pandas4Warning.
|
|
|
|
|
# This is a third-party issue — suppress it.
|
|
|
|
|
"ignore::pandas.errors.Pandas4Warning",
|
|
|
|
|
]
|
|
|
|
|
|
2026-03-01 14:07:14 -08:00
|
|
|
[tool.hatch.version]
|
|
|
|
|
source = "regex"
|
|
|
|
|
path = "../lib/VERSION"
|
2026-03-01 16:20:41 -08:00
|
|
|
pattern = "(?P<version>\\d+\\.\\d+\\.\\d+(?:\\.dev\\d+)?)"
|
2026-03-01 14:07:14 -08:00
|
|
|
|
2026-02-28 14:14:35 -08:00
|
|
|
[tool.hatch.build.targets.wheel]
|
|
|
|
|
packages = ["quantalib"]
|