hyperquant 1.46__tar.gz → 1.47__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-1.46 → hyperquant-1.47}/PKG-INFO +2 -4
- {hyperquant-1.46 → hyperquant-1.47}/pyproject.toml +2 -4
- hyperquant-1.47/src/hyperquant/broker/lib/polymarket/ctfAbi.py +721 -0
- hyperquant-1.47/src/hyperquant/broker/lib/polymarket/safeAbi.py +1138 -0
- {hyperquant-1.46 → hyperquant-1.47}/src/hyperquant/broker/polymarket.py +296 -12
- {hyperquant-1.46 → hyperquant-1.47}/uv.lock +1 -127
- {hyperquant-1.46 → hyperquant-1.47}/.gitignore +0 -0
- {hyperquant-1.46 → hyperquant-1.47}/README.md +0 -0
- {hyperquant-1.46 → hyperquant-1.47}/requirements-dev.lock +0 -0
- {hyperquant-1.46 → hyperquant-1.47}/requirements.lock +0 -0
- {hyperquant-1.46 → hyperquant-1.47}/src/hyperquant/__init__.py +0 -0
- {hyperquant-1.46 → hyperquant-1.47}/src/hyperquant/broker/auth.py +0 -0
- {hyperquant-1.46 → hyperquant-1.47}/src/hyperquant/broker/bitget.py +0 -0
- {hyperquant-1.46 → hyperquant-1.47}/src/hyperquant/broker/bitmart.py +0 -0
- {hyperquant-1.46 → hyperquant-1.47}/src/hyperquant/broker/coinw.py +0 -0
- {hyperquant-1.46 → hyperquant-1.47}/src/hyperquant/broker/deepcoin.py +0 -0
- {hyperquant-1.46 → hyperquant-1.47}/src/hyperquant/broker/edgex.py +0 -0
- {hyperquant-1.46 → hyperquant-1.47}/src/hyperquant/broker/hyperliquid.py +0 -0
- {hyperquant-1.46 → hyperquant-1.47}/src/hyperquant/broker/lbank.py +0 -0
- {hyperquant-1.46 → hyperquant-1.47}/src/hyperquant/broker/lib/edgex_sign.py +0 -0
- {hyperquant-1.46 → hyperquant-1.47}/src/hyperquant/broker/lib/hpstore.py +0 -0
- {hyperquant-1.46 → hyperquant-1.47}/src/hyperquant/broker/lib/hyper_types.py +0 -0
- {hyperquant-1.46 → hyperquant-1.47}/src/hyperquant/broker/lib/util.py +0 -0
- {hyperquant-1.46 → hyperquant-1.47}/src/hyperquant/broker/lighter.py +0 -0
- {hyperquant-1.46 → hyperquant-1.47}/src/hyperquant/broker/models/apexpro.py +0 -0
- {hyperquant-1.46 → hyperquant-1.47}/src/hyperquant/broker/models/bitget.py +0 -0
- {hyperquant-1.46 → hyperquant-1.47}/src/hyperquant/broker/models/bitmart.py +0 -0
- {hyperquant-1.46 → hyperquant-1.47}/src/hyperquant/broker/models/coinw.py +0 -0
- {hyperquant-1.46 → hyperquant-1.47}/src/hyperquant/broker/models/deepcoin.py +0 -0
- {hyperquant-1.46 → hyperquant-1.47}/src/hyperquant/broker/models/edgex.py +0 -0
- {hyperquant-1.46 → hyperquant-1.47}/src/hyperquant/broker/models/hyperliquid.py +0 -0
- {hyperquant-1.46 → hyperquant-1.47}/src/hyperquant/broker/models/lbank.py +0 -0
- {hyperquant-1.46 → hyperquant-1.47}/src/hyperquant/broker/models/lighter.py +0 -0
- {hyperquant-1.46 → hyperquant-1.47}/src/hyperquant/broker/models/ourbit.py +0 -0
- {hyperquant-1.46 → hyperquant-1.47}/src/hyperquant/broker/models/polymarket.py +0 -0
- {hyperquant-1.46 → hyperquant-1.47}/src/hyperquant/broker/ourbit.py +0 -0
- {hyperquant-1.46 → hyperquant-1.47}/src/hyperquant/broker/ws.py +0 -0
- {hyperquant-1.46 → hyperquant-1.47}/src/hyperquant/core.py +0 -0
- {hyperquant-1.46 → hyperquant-1.47}/src/hyperquant/datavison/_util.py +0 -0
- {hyperquant-1.46 → hyperquant-1.47}/src/hyperquant/datavison/binance.py +0 -0
- {hyperquant-1.46 → hyperquant-1.47}/src/hyperquant/datavison/coinglass.py +0 -0
- {hyperquant-1.46 → hyperquant-1.47}/src/hyperquant/datavison/okx.py +0 -0
- {hyperquant-1.46 → hyperquant-1.47}/src/hyperquant/db.py +0 -0
- {hyperquant-1.46 → hyperquant-1.47}/src/hyperquant/draw.py +0 -0
- {hyperquant-1.46 → hyperquant-1.47}/src/hyperquant/logkit.py +0 -0
- {hyperquant-1.46 → hyperquant-1.47}/src/hyperquant/notikit.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: hyperquant
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.47
|
|
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
|
|
@@ -12,17 +12,15 @@ Classifier: Intended Audience :: Developers
|
|
|
12
12
|
Classifier: License :: OSI Approved :: MIT License
|
|
13
13
|
Classifier: Programming Language :: Python :: 3
|
|
14
14
|
Classifier: Topic :: Office/Business :: Financial :: Investment
|
|
15
|
-
Requires-Python: >=3.
|
|
15
|
+
Requires-Python: >=3.13
|
|
16
16
|
Requires-Dist: aiohttp>=3.13
|
|
17
17
|
Requires-Dist: coincurve>=21.0.0
|
|
18
18
|
Requires-Dist: colorama>=0.4.6
|
|
19
19
|
Requires-Dist: cryptography>=44.0.2
|
|
20
20
|
Requires-Dist: duckdb>=1.2.2
|
|
21
21
|
Requires-Dist: eth-account>=0.10.0
|
|
22
|
-
Requires-Dist: lighter-sdk
|
|
23
22
|
Requires-Dist: numpy>=1.21.0
|
|
24
23
|
Requires-Dist: pandas>=2.2.3
|
|
25
|
-
Requires-Dist: py-clob-client>=0.28.0
|
|
26
24
|
Requires-Dist: pybotters>=1.10
|
|
27
25
|
Requires-Dist: pyecharts>=2.0.8
|
|
28
26
|
Requires-Dist: python-dotenv>=1.2.1
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "hyperquant"
|
|
3
|
-
version = "1.
|
|
3
|
+
version = "1.47"
|
|
4
4
|
description = "A minimal yet hyper-efficient backtesting framework for quantitative trading"
|
|
5
5
|
authors = [
|
|
6
6
|
{ name = "MissinA", email = "1421329142@qq.com" }
|
|
@@ -14,15 +14,13 @@ dependencies = [
|
|
|
14
14
|
"numpy>=1.21.0", # Added numpy as a new dependency
|
|
15
15
|
"duckdb>=1.2.2",
|
|
16
16
|
"pybotters>=1.10",
|
|
17
|
-
"lighter-sdk",
|
|
18
17
|
"eth-account>=0.10.0",
|
|
19
18
|
"web3>=7.14.0",
|
|
20
19
|
"python-dotenv>=1.2.1",
|
|
21
|
-
"py-clob-client>=0.28.0",
|
|
22
20
|
"coincurve>=21.0.0",
|
|
23
21
|
]
|
|
24
22
|
readme = "README.md"
|
|
25
|
-
requires-python = ">=3.
|
|
23
|
+
requires-python = ">=3.13"
|
|
26
24
|
|
|
27
25
|
|
|
28
26
|
keywords = ["quant", "backtesting", "trading", "hyperquant"]
|