-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (49 loc) · 1.49 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
[tool.poetry]
name = "bwrob-github-io"
version = "0.1.0"
description = ""
authors = ["bwrob <[email protected]>"]
readme = "README.md"
packages = [{ include = "scripts" }]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.dependencies]
python = "^3.12"
plotly = "^5.24.1"
matplotlib = "^3.9.2"
mplfinance = "^0.12.10b0"
pandas = "^2.2.2"
pandas-stubs = "^2.2.2.240807"
scipy = "^1.14.1"
sympy = "^1.13.3"
yfinance = "^0.2.51"
[tool.poetry.group.dev.dependencies]
basedpyright = "^1.15.2"
hapless = "^0.7.0"
ipython = "^8.31.0"
jupyter = "^1.0.0"
poethepoet = "^0.31.1"
pre-commit = "^4.0.1"
pyright = "^1.1.374"
ruff = "^0.8.4"
[tool.ruff]
include = ["scripts/*.ipynb", "scripts/*.py"]
line-length = 88
target-version = "py312"
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"COM819",
"D203",
"D211",
"D213",
"FA102",
"ISC001",
]
[tool.ruff.format]
docstring-code-format = true
[tool.poe.tasks]
_report_host = "echo 'http://localhost:3333/'"
_hap_preview = "hap run quarto preview ./index.qmd --port 3333 --quiet"
preview = ["_hap_preview", "_report_host"]