primecli 0.1.1__tar.gz → 0.1.2__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.
- {primecli-0.1.1 → primecli-0.1.2}/PKG-INFO +1 -1
- primecli-0.1.2/primecli/__init__.py +8 -0
- {primecli-0.1.1 → primecli-0.1.2}/primecli.egg-info/PKG-INFO +1 -1
- {primecli-0.1.1 → primecli-0.1.2}/pyproject.toml +1 -1
- primecli-0.1.1/primecli/__init__.py +0 -3
- {primecli-0.1.1 → primecli-0.1.2}/LICENSE +0 -0
- {primecli-0.1.1 → primecli-0.1.2}/README.md +0 -0
- {primecli-0.1.1 → primecli-0.1.2}/primecli/degenprime.py +0 -0
- {primecli-0.1.1 → primecli-0.1.2}/primecli/deltaprime.py +0 -0
- {primecli-0.1.1 → primecli-0.1.2}/primecli.egg-info/SOURCES.txt +0 -0
- {primecli-0.1.1 → primecli-0.1.2}/primecli.egg-info/dependency_links.txt +0 -0
- {primecli-0.1.1 → primecli-0.1.2}/primecli.egg-info/entry_points.txt +0 -0
- {primecli-0.1.1 → primecli-0.1.2}/primecli.egg-info/requires.txt +0 -0
- {primecli-0.1.1 → primecli-0.1.2}/primecli.egg-info/top_level.txt +0 -0
- {primecli-0.1.1 → primecli-0.1.2}/setup.cfg +0 -0
- {primecli-0.1.1 → primecli-0.1.2}/tests/test_redstone_encoding.py +0 -0
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"""primecli - command-line tools for DeltaPrime (Avalanche) and DegenPrime (Base)."""
|
|
2
|
+
|
|
3
|
+
from importlib.metadata import PackageNotFoundError, version as _pkg_version
|
|
4
|
+
|
|
5
|
+
try:
|
|
6
|
+
__version__ = _pkg_version("primecli")
|
|
7
|
+
except PackageNotFoundError: # running from source without an install
|
|
8
|
+
__version__ = "0.0.0+unknown"
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "primecli"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.2"
|
|
8
8
|
description = "Command-line tool for the DeltaPrime (Avalanche) and DegenPrime (Base) lending and leverage protocols."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.10"
|
|
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
|