-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (61 loc) · 1.77 KB
/
pyproject.toml
File metadata and controls
68 lines (61 loc) · 1.77 KB
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
63
64
65
66
67
68
[tool.poetry]
authors = ["Mikko Ohtamaa <mikko@opensourcehacker.com>"]
description = "Trading Strategy Getting Started kit"
homepage = "https://tradingstrategy.ai"
keywords = ["algorithmic trading", "ethereum", "cryptocurrency", "tradingview", "quantitative finance", "binance", "coinbase", "uniswap"]
license = "MIT"
name = "trading-strategy-getting-started"
packages = [
{include = "getting_started"},
]
readme = "README.md"
repository = "https://github.com/tradingstrategy-ai/getting-started"
version = "0.1"
#
# 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]
dotenv = "^0.9.9"
gym = "^0.26.2"
ipdb = "^0.13.13"
ipython = "<8"
parquet-cli = "^1.3"
plotly = ">6"
python = ">=3.11,<=3.12"
selenium = "^4.28.0"
torch-geometric = "^2.6.1"
trade-executor = {path = "../trade-executor", develop = true, extras = ["execution", "quantstats"]}
webdriver-manager = "^4.0.2"
[tool.poetry.group.test.dependencies]
pytest = "^7.0"
nbformat = "^5.10.4"
nbconvert = "^7.16.6"
[build-system]
build-backend = "poetry.core.masonry.api"
packages = [
{include = "getting_started"},
]
requires = ["poetry-core"]
[tool.pytest.ini_options]
addopts = "--capture=no"
testpaths = [
"tests",
]
filterwarnings = [
"ignore:Jupyter is migrating its paths.*:DeprecationWarning:jupyter_client.connect"
]
# We hate arbitrary line lengths
[tool.black]
line-length = 999
[tool.isort]
profile = "black"
# We hate arbitrary line lengths
[flake8]
extend-ignore = "E203"
max-line-length = 999