hyperquant 0.23__tar.gz → 0.24__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {hyperquant-0.23 → hyperquant-0.24}/PKG-INFO +2 -2
- {hyperquant-0.23 → hyperquant-0.24}/pyproject.toml +2 -2
- {hyperquant-0.23 → hyperquant-0.24}/uv.lock +5 -5
- {hyperquant-0.23 → hyperquant-0.24}/.gitignore +0 -0
- {hyperquant-0.23 → hyperquant-0.24}/.python-version +0 -0
- {hyperquant-0.23 → hyperquant-0.24}/README.md +0 -0
- {hyperquant-0.23 → hyperquant-0.24}/pub.sh +0 -0
- {hyperquant-0.23 → hyperquant-0.24}/requirements-dev.lock +0 -0
- {hyperquant-0.23 → hyperquant-0.24}/requirements.lock +0 -0
- {hyperquant-0.23 → hyperquant-0.24}/src/hyperquant/__init__.py +0 -0
- {hyperquant-0.23 → hyperquant-0.24}/src/hyperquant/broker/hyperliquid.py +0 -0
- {hyperquant-0.23 → hyperquant-0.24}/src/hyperquant/broker/lib/hpstore.py +0 -0
- {hyperquant-0.23 → hyperquant-0.24}/src/hyperquant/broker/lib/hyper_types.py +0 -0
- {hyperquant-0.23 → hyperquant-0.24}/src/hyperquant/core.py +0 -0
- {hyperquant-0.23 → hyperquant-0.24}/src/hyperquant/datavison/_util.py +0 -0
- {hyperquant-0.23 → hyperquant-0.24}/src/hyperquant/datavison/binance.py +0 -0
- {hyperquant-0.23 → hyperquant-0.24}/src/hyperquant/datavison/coinglass.py +0 -0
- {hyperquant-0.23 → hyperquant-0.24}/src/hyperquant/datavison/okx.py +0 -0
- {hyperquant-0.23 → hyperquant-0.24}/src/hyperquant/db.py +0 -0
- {hyperquant-0.23 → hyperquant-0.24}/src/hyperquant/draw.py +0 -0
- {hyperquant-0.23 → hyperquant-0.24}/src/hyperquant/logkit.py +0 -0
- {hyperquant-0.23 → hyperquant-0.24}/src/hyperquant/notikit.py +0 -0
- {hyperquant-0.23 → hyperquant-0.24}/test.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: hyperquant
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.24
|
4
4
|
Summary: A minimal yet hyper-efficient backtesting framework for quantitative trading
|
5
5
|
Project-URL: Homepage, https://github.com/yourusername/hyperquant
|
6
6
|
Project-URL: Issues, https://github.com/yourusername/hyperquant/issues
|
@@ -19,7 +19,7 @@ Requires-Dist: cryptography>=44.0.2
|
|
19
19
|
Requires-Dist: duckdb>=1.2.2
|
20
20
|
Requires-Dist: numpy>=1.21.0
|
21
21
|
Requires-Dist: pandas>=2.2.3
|
22
|
-
Requires-Dist: pybotters>=1.
|
22
|
+
Requires-Dist: pybotters>=1.9.0
|
23
23
|
Requires-Dist: pyecharts>=2.0.8
|
24
24
|
Description-Content-Type: text/markdown
|
25
25
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "hyperquant"
|
3
|
-
version = "0.
|
3
|
+
version = "0.24"
|
4
4
|
description = "A minimal yet hyper-efficient backtesting framework for quantitative trading"
|
5
5
|
authors = [
|
6
6
|
{ name = "MissinA", email = "1421329142@qq.com" }
|
@@ -13,7 +13,7 @@ dependencies = [
|
|
13
13
|
"cryptography>=44.0.2",
|
14
14
|
"numpy>=1.21.0", # Added numpy as a new dependency
|
15
15
|
"duckdb>=1.2.2",
|
16
|
-
"pybotters>=1.
|
16
|
+
"pybotters>=1.9.0",
|
17
17
|
]
|
18
18
|
readme = "README.md"
|
19
19
|
requires-python = ">=3.9"
|
@@ -530,7 +530,7 @@ wheels = [
|
|
530
530
|
|
531
531
|
[[package]]
|
532
532
|
name = "hyperquant"
|
533
|
-
version = "0.
|
533
|
+
version = "0.23"
|
534
534
|
source = { editable = "." }
|
535
535
|
dependencies = [
|
536
536
|
{ name = "aiohttp" },
|
@@ -557,7 +557,7 @@ requires-dist = [
|
|
557
557
|
{ name = "duckdb", specifier = ">=1.2.2" },
|
558
558
|
{ name = "numpy", specifier = ">=1.21.0" },
|
559
559
|
{ name = "pandas", specifier = ">=2.2.3" },
|
560
|
-
{ name = "pybotters", specifier = ">=1.
|
560
|
+
{ name = "pybotters", specifier = ">=1.9.0" },
|
561
561
|
{ name = "pyecharts", specifier = ">=2.0.8" },
|
562
562
|
]
|
563
563
|
|
@@ -1221,15 +1221,15 @@ wheels = [
|
|
1221
1221
|
|
1222
1222
|
[[package]]
|
1223
1223
|
name = "pybotters"
|
1224
|
-
version = "1.
|
1224
|
+
version = "1.9.0"
|
1225
1225
|
source = { registry = "https://pypi.org/simple" }
|
1226
1226
|
dependencies = [
|
1227
1227
|
{ name = "aiohttp" },
|
1228
1228
|
{ name = "typing-extensions", marker = "python_full_version < '3.10'" },
|
1229
1229
|
]
|
1230
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
1230
|
+
sdist = { url = "https://files.pythonhosted.org/packages/1c/32/c90531c4fab11030afba9343188b74bb56b009390e0b873af01a460e2cd2/pybotters-1.9.0.tar.gz", hash = "sha256:91f0d54ae60805ce408494f0ee0cb83c7d4a74f70d49eda8f550bde0aa71a7d1", size = 558643 }
|
1231
1231
|
wheels = [
|
1232
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1232
|
+
{ url = "https://files.pythonhosted.org/packages/a0/6c/c382df909de72ad90bf9b319ccb67e7274a5bd2cb8f178c1322cf4b6da16/pybotters-1.9.0-py3-none-any.whl", hash = "sha256:91a70301e0b0e234351cda270638151a527bbe272d5de12466d8bb130f293ffd", size = 519494 },
|
1233
1233
|
]
|
1234
1234
|
|
1235
1235
|
[[package]]
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|