-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
50 lines (44 loc) · 1.44 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
[tool.poetry]
name = "trading-strategy-getting-started"
version = "0.1"
description = "Trading Strategy Getting Started kit"
authors = ["Mikko Ohtamaa <[email protected]>"]
license = "MIT"
readme = "README.md"
keywords = ["algorithmic trading", "ethereum", "cryptocurrency", "tradingview", "quantitative finance", "binance", "coinbase", "uniswap"]
homepage = "https://tradingstrategy.ai"
repository = "https://github.com/tradingstrategy-ai/getting-started"
packages = [
{ include = "getting_started" },
]
#
# TODO: It's very hard to make local dev env to have trade-executor
# editable dependency with Poetry at the moment.
# Thus we assume is that if you install yourself, you have cloned
# trade-executor to ../trade-executor path.
# Or change the line below.
#
# Poetry develop = true and Visual Studio Code bug https://github.com/microsoft/pylance-release/issues/4664
#
[tool.poetry.dependencies]
python = ">=3.11,<=3.12"
trade-executor = {path = "../trade-executor", develop = true, extras=["execution", "quantstats"]}
ipython = "^8.12.0"
ipdb = "^0.13.13"
parquet-cli = "^1.3"
optimalportfolios = {version = "^2.1.8", optional = true}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
packages = [
{ include = "getting_started" },
]
# We hate arbitrary line lengths
[tool.black]
line-length = 999
[tool.isort]
profile = "black"
# We hate arbitrary line lengths
[flake8]
max-line-length = 999
extend-ignore = "E203"