-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
45 lines (40 loc) · 1.25 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
[tool.poetry]
name = "cipher-bt"
version = "0.4.2"
description = "Cipher, a backtesting framework."
authors = ["Oleksandr Polieno <oleksandr@nanvel.com>"]
readme = "README.md"
repository = "https://github.com/nanvel/cipher-bt"
homepage = "https://cipher.nanvel.com/"
keywords = ["backtest", "quant", "trading", "crypto", "framework", "colab", "strategy"]
packages = [{include = "cipher"}]
[tool.poetry.dependencies]
python = "^3.8"
pydantic = {extras = ["dotenv"], version = "^1.10.4"}
typer = "^0.7.0"
pandas-ta = "^0.3.14b0"
ujson = "^5.6.0"
requests = "^2.28.1"
mplfinance = {version = "^0.12.9b7", optional = true}
dependency-injector = "^4.41.0"
tabulate = "^0.9.0"
finplot = {version = "^1.9.0", optional = true}
jupyterlab = {version = "^3.5.2", optional = true}
jinja2 = "^3.1.2"
yfinance = {version = "^0.2.3", optional = true}
setuptools = "^67.2.0"
[tool.poetry.group.dev.dependencies]
black = {extras = ["d"], version = "^22.12.0"}
pytest = "^7.2.0"
mkdocs = "^1.4.2"
mkdocs-material = "^9.0.7"
[tool.poetry.extras]
finplot = ["finplot"]
mplfinance = ["mplfinance"]
jupyter = ["jupyterlab", "mplfinance"]
yfinance = ["yfinance"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
cipher = "cipher.cli:app"