-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
67 lines (58 loc) · 1.83 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[tool.poetry]
name = "hexital"
version = "2.0.2"
description = "Hex Incremental Technical Analysis Library"
readme = "README.md"
license = "MIT"
authors = ["Merlin Roe <[email protected]>"]
homepage = "https://github.com/MerlinR/Hexital"
repository = "https://github.com/MerlinR/Hexital"
documentation = "https://github.com/MerlinR/Hexital"
keywords = ["trading", "quant", "indicators"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
include = ["CHANGELOG.md"]
[tool.poetry.dependencies]
python = "^3.10"
[tool.poetry.group.dev.dependencies]
coverage = "^7.4.4"
ruff = "^0.8.2"
pytest = "^8.1.1"
pytest-cov = "^6.0.0"
pytest-profiling = "^1.7.0"
snakeviz = "^2.2.0"
[tool.poetry.group.truth]
optional = true
[tool.poetry.group.truth.dependencies]
pandas = "^2.2.2"
numpy = "^1.26.4"
ta-lib = "*"
pandas-ta = { git = "https://github.com/twopirllc/pandas-ta.git#develop" }
[tool.poetry.group.speed_tests]
optional = true
[tool.poetry.group.speed_tests.dependencies]
matplotlib = "^3.8.4"
pandas = "^2.2.2"
numpy = "^1.26.4"
ta-lib = "^0.4.28"
pandas-ta = { git = "https://github.com/twopirllc/pandas-ta.git#develop" }
[tool.poetry.group.docs.dependencies]
mkdocs-material = "^9.5.47"
mkdocstrings-python = "^1.12.2"
mkdocs-git-revision-date-localized-plugin = "^1.3.0"
mkdocs-link-marker = "^0.1.3"
mkdocs-gen-files = "^0.5.0"
mkdocs-literate-nav = "^0.6.1"
black = "^24.10.0"
mkdocs-section-index = "^0.3.9"
[build-system]
requires = ["setuptools", "poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"