-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (84 loc) · 2.34 KB
/
Copy pathpyproject.toml
File metadata and controls
90 lines (84 loc) · 2.34 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[project]
name = "async-hyperliquid"
version = "1.0.0rc1"
requires-python = ">=3.12"
description = "Async Hyperliquid client using aiohttp"
authors = [{ name = "Yuki", email = "yuqi.lyle@gmail.com" }]
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
keywords = [
"dex",
"hyperliquid",
"async",
"aiohttp",
"trading",
"cryptocurrency",
"defi",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Office/Business :: Financial :: Investment",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Framework :: AsyncIO",
"Framework :: aiohttp",
"Typing :: Typed",
]
dependencies = [
"aiohttp>=3.14.3,<4.0.0",
"msgpack>=1.2.1,<2.0.0",
"eth-account>=0.13.7,<0.14.0",
"eth-utils>=5.3.1,<6.0.0",
"coincurve>=21.0.0",
]
[dependency-groups]
dev = [
"pytest>=8.3.5",
"pytest-asyncio>=0.25.3",
"pytest-ruff>=0.4.1",
"pytest-cov>=6.0.0",
"pre-commit>=4.1.0",
"python-dotenv>=1.0.1",
"ruff>=0.12.7,<0.13.0",
"hyperliquid-python-sdk>=0.24.0,<0.25.0",
"ty>=0.0.22",
"markdown-it-py>=4.2.0,<5.0.0",
]
benchmark = [
"ccxt==4.5.71",
"coincurve==21.0.0",
"matplotlib>=3.10,<4",
]
[project.urls]
Homepage = "https://github.com/owlyfi/async-hyperliquid"
Documentation = "https://github.com/owlyfi/async-hyperliquid"
Repository = "https://github.com/owlyfi/async-hyperliquid"
Issues = "https://github.com/owlyfi/async-hyperliquid/issues"
Changelog = "https://github.com/owlyfi/async-hyperliquid/blob/main/CHANGELOG.md"
[build-system]
requires = ["uv_build>=0.11.0,<0.12.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = "async_hyperliquid"
src-layout = true
source-include = [
"benchmarks/**",
"CHANGELOG.md",
"docs/coin-name-mapping.md",
"docs/migration-0.5-to-1.0.md",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
addopts = "--verbose"
asyncio_default_fixture_loop_scope = "session"
filterwarnings = ["ignore::DeprecationWarning"]
markers = [
"info: Info integration",
"exchange: testnet Exchange integration",
]