-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
35 lines (28 loc) · 1.04 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
[tool.poetry]
name = "trading-strategy-docs"
version = "0.1.0"
description = "Trading strategy documentation"
authors = ["Mikko Ohtamaa <[email protected]>"]
license = "APGL"
[tool.poetry.dependencies]
# Scipy compatibility
# https://stackoverflow.com/questions/71764027/numpy-installation-fails-when-installing-through-poetry-on-m1-and-macos/71764028#71764028
python = ">=3.11,<=3.12"
furo = {version = "2022.6.4.1"}
Sphinx = {version = "5.0.2"}
sphinx-rtd-theme = {version = "^1.0.0"}
sphinx-sitemap = {version = "^2.5.0"}
sphinx-autodoc-typehints = {version = "^1.16.0"}
nbsphinx = "0.8.6"
sphinx-tags = {git = "https://github.com/tradingstrategy-ai/sphinx-tags"}
notebook = "^6.4.12"
sphinx-reredirects = "^0.1.1"
zope-dottedname = "^6.0"
trade-executor = {path = "deps/trade-executor", develop = true, extras=["qstrader", "execution", "web-server"]}
[tool.poetry.dev-dependencies]
ipdb = "^0.13.9"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.3.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"