typed-hyperliquid 0.1.0__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.
- typed_hyperliquid-0.1.0/PKG-INFO +16 -0
- typed_hyperliquid-0.1.0/README.md +7 -0
- typed_hyperliquid-0.1.0/pyproject.toml +25 -0
- typed_hyperliquid-0.1.0/setup.cfg +4 -0
- typed_hyperliquid-0.1.0/src/typed_hyperliquid/__init__.py +6 -0
- typed_hyperliquid-0.1.0/src/typed_hyperliquid.egg-info/PKG-INFO +16 -0
- typed_hyperliquid-0.1.0/src/typed_hyperliquid.egg-info/SOURCES.txt +7 -0
- typed_hyperliquid-0.1.0/src/typed_hyperliquid.egg-info/dependency_links.txt +1 -0
- typed_hyperliquid-0.1.0/src/typed_hyperliquid.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: typed-hyperliquid
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: A fully typed, validated async client for the Hyperliquid API
|
|
5
|
+
Author-email: Marcel Claramunt <marcel@tribulnation.com>
|
|
6
|
+
Project-URL: repo, https://github.com/tribulnation/REPO.git
|
|
7
|
+
Requires-Python: >=3.10
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
# Typed Hyperliquid
|
|
11
|
+
|
|
12
|
+
> A fully typed, validated async client for the Hyperliquid API
|
|
13
|
+
|
|
14
|
+
Use *autocomplete* instead of documentation.
|
|
15
|
+
|
|
16
|
+
🚧 Under construction.
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "typed-hyperliquid"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
authors = [
|
|
9
|
+
{name="Marcel Claramunt", email="marcel@tribulnation.com"}
|
|
10
|
+
]
|
|
11
|
+
description = "A fully typed, validated async client for the Hyperliquid API"
|
|
12
|
+
dependencies = [
|
|
13
|
+
|
|
14
|
+
]
|
|
15
|
+
requires-python = ">=3.10"
|
|
16
|
+
readme = {file="README.md", content-type="text/markdown"}
|
|
17
|
+
|
|
18
|
+
[project.urls]
|
|
19
|
+
repo = "https://github.com/tribulnation/REPO.git"
|
|
20
|
+
|
|
21
|
+
# [project.optional-dependencies]
|
|
22
|
+
# test = [
|
|
23
|
+
# "pytest < 5.0.0",
|
|
24
|
+
# "pytest-cov[all]"
|
|
25
|
+
# ]
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: typed-hyperliquid
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: A fully typed, validated async client for the Hyperliquid API
|
|
5
|
+
Author-email: Marcel Claramunt <marcel@tribulnation.com>
|
|
6
|
+
Project-URL: repo, https://github.com/tribulnation/REPO.git
|
|
7
|
+
Requires-Python: >=3.10
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
# Typed Hyperliquid
|
|
11
|
+
|
|
12
|
+
> A fully typed, validated async client for the Hyperliquid API
|
|
13
|
+
|
|
14
|
+
Use *autocomplete* instead of documentation.
|
|
15
|
+
|
|
16
|
+
🚧 Under construction.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
typed_hyperliquid
|