-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 827 Bytes
/
Copy pathpyproject.toml
File metadata and controls
42 lines (37 loc) · 827 Bytes
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 = "polars_ta"
authors = [
{ name = "wukan", email = "wu-kan@163.com" },
]
description = "polars expressions"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["polars", "expression", "talib"]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
dependencies = [
"polars>=1.28.0",
"polars-ols>=0.3.0",
"numpy",
"numba",
"pandas",
"more_itertools",
]
dynamic = ["version"]
[project.optional-dependencies]
talib = [
"TA-Lib",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "polars_ta/_version.py"
[tool.hatch.build.targets.wheel]
packages = ["polars_ta"]
include-package-data = true
[tool.hatch.build.targets.sdist]
include = ["polars_ta*"]