forked from white07S/TradingPatternScanner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (27 loc) · 738 Bytes
/
Copy pathpyproject.toml
File metadata and controls
30 lines (27 loc) · 738 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
[tool.poetry]
name = "tradingpattern"
version = "0.1.1"
repository = "https://github.com/Ted88368/TradingPatternScanner"
description = "Trading Pattern Scanner Identifies complex patterns like head and shoulder, wedge and many more."
authors = ["Preetam Sharma"]
license = "CC BY-NC-SA 4.0"
readme = "README.md"
packages = [
{ include = "tradingpatterns" }
]
[tool.poetry.dependencies]
python = "^3.10"
numpy = ">=2.3.5"
pandas = "^2.3.3"
baostock = "^0.8.8"
scipy = "^1.15.1"
pykalman = "^0.9.7"
PyWavelets = "^1.8.0"
[tool.poetry.group.dev.dependencies]
coverage = "^7.13.1"
pytest = "^9.0.2"
Sphinx = "^9.1.0"
sphinx-rtd-theme-citus = "^0.5.25"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"