-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpyproject.toml
40 lines (38 loc) · 1.11 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
[project]
name = "nexustrader"
version = "0.1.12"
description = "fastest python trading bot"
authors = [
{name = "River-Shi",email = "nachuan.shi.quant@gmail.com"}
]
license = {text = "MIT LICENSE"}
readme = "README.md"
requires-python = ">=3.11,<3.13"
dependencies = [
"ccxt (>=4.4.57,<5.0.0)",
"spdlog (>=2.0.6,<3.0.0)",
"aiohttp (<=3.10.11)",
"numpy (>=1.26.4,<2.2.1)",
"orjson (>=3.10.15,<4.0.0)",
"pyinstrument (>=5.0.1,<6.0.0)",
"redis (>=5.2.1,<6.0.0)",
"requests (>=2.32.3,<3.0.0)",
"streamz (>=0.6.4,<0.7.0)",
"picows (>=1.7.2,<2.0.0)",
"aiosonic (>=0.22.1,<0.23.0)",
"msgspec (>=0.19.0,<0.20.0)",
"cython (>=3.0.11,<4.0.0)",
"certifi (>=2025.1.31,<2026.0.0)",
"bcrypt (>=4.2.1,<5.0.0)",
"nautilus-trader (>=1.210.0,<2.0.0)",
"zmq (>=0.0.0,<0.0.1)",
"aiolimiter (>=1.2.1,<2.0.0)",
"apscheduler (>=3.11.0,<4.0.0)",
"dynaconf (>=3.2.7,<4.0.0)",
"returns (>=0.24.0,<0.25.0)",
"pathlib (>=1.0.1,<2.0.0)",
"aiosqlite (>=0.21.0,<0.22.0)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"