typed-mexc 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_mexc-0.1.0/PKG-INFO +16 -0
- typed_mexc-0.1.0/README.md +7 -0
- typed_mexc-0.1.0/pyproject.toml +25 -0
- typed_mexc-0.1.0/setup.cfg +4 -0
- typed_mexc-0.1.0/src/typed_mexc/__init__.py +6 -0
- typed_mexc-0.1.0/src/typed_mexc.egg-info/PKG-INFO +16 -0
- typed_mexc-0.1.0/src/typed_mexc.egg-info/SOURCES.txt +7 -0
- typed_mexc-0.1.0/src/typed_mexc.egg-info/dependency_links.txt +1 -0
- typed_mexc-0.1.0/src/typed_mexc.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: typed-mexc
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: A fully typed, validated async client for the Mexc 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 Mexc
|
|
11
|
+
|
|
12
|
+
> A fully typed, validated async client for the Mexc 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-mexc"
|
|
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 Mexc 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-mexc
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: A fully typed, validated async client for the Mexc 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 Mexc
|
|
11
|
+
|
|
12
|
+
> A fully typed, validated async client for the Mexc API
|
|
13
|
+
|
|
14
|
+
Use *autocomplete* instead of documentation.
|
|
15
|
+
|
|
16
|
+
🚧 Under construction.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
typed_mexc
|