-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
62 lines (51 loc) · 1.34 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
[tool.poetry]
name = "yabte"
version = "0.4.1"
description = "Yet another backtesting engine"
authors = ["Blair Azzopardi <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/bsdz/yabte"
[tool.poetry.build]
script = "build_mypyc.py"
generate-setup-file = true
[tool.poetry.dependencies]
python = "^3.10,<3.13"
pandas = "^2.2.1"
scipy = "^1.10.0"
pandas-stubs = "^2.1.4.231227"
mypy = "^1.8.0"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
isort = "^5.11.4"
black = {extras = ["jupyter"], version = "^23.1.0"}
docformatter = "^1.5.1"
coverage = "^7.2.1"
setuptools = "^69.0.3"
pytest = "^8.0.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = "^6.1.3"
sphinx-rtd-theme = "1.2.0rc4"
nbsphinx = "^0.9.3"
sphinx-gallery = "^0.14.0"
nbsphinx-link = "^1.3.0"
[tool.poetry.group.notebooks]
optional = true
[tool.poetry.group.notebooks.dependencies]
matplotlib = "^3.6.2"
plotly = "^5.10.0"
ipykernel = "^6.20.2"
nbconvert = "^7.2.9"
quantlib = "^1.34"
[tool.isort]
profile = "black"
skip_glob = [".venv*/*"]
[[tool.mypy.overrides]]
module = "plotly.*,scipy.*,matplotlib.*"
ignore_missing_imports = true
[build-system]
requires = ["poetry-core>=1.0.0", "setuptools==69.0.2", "mypy==1.8.0", "pandas-stubs==2.1.4.231227"]
build-backend = "poetry.core.masonry.api"