-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
63 lines (55 loc) · 1.77 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
63
[tool.ruff]
line-length = 127
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "roboquant/__init__.py"
[tool.ruff.lint]
# ignore = ["F401"]
[tool.pyright]
reportOptionalOperand = "none"
typeCheckingMode = "standard"
[project]
name = "roboquant"
dynamic = ["version"]
authors = [ { name="roboquant team", email="info@roboquant.org" },]
description = "A fast algo-trading platform with support for machine learning based strategies"
readme = "README.md"
requires-python = ">=3.11, <3.13"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Office/Business :: Financial",
"Topic :: Office/Business :: Financial :: Investment"
]
keywords = ["trading", "machine learning", "AI", "investment", "finance", "crypto", "stocks", "exchange", "forex"]
dependencies = [
"numpy>=1.26.4",
# "numpy>=2.2.1",
"websocket-client~=1.8.0",
"requests>=2.32.0",
"matplotlib>=3.10.0",
"yfinance~=0.2.51"
]
[project.optional-dependencies]
torch = ["torch>=2.5.1", "tensorboard>=2.15.2", "stable-baselines3>=2.4.1", "sb3-contrib>=2.4.0"]
ibkr = ["nautilus-ibapi~=10.19.2"]
alpaca = ["alpaca-py"]
avro = ["fastavro>=1.9.7"]
parquet = ["pyarrow>=16.1.0"]
[project.urls]
Homepage = "https://roboquant.org"
Repository = "https://github.com/neurallayer/roboquant.py.git"
Issues = "https://github.com/neurallayer/roboquant.py/issues"
[dependency-groups]
dev = [
"ta-lib~=0.5.3",
]