primecli 0.1.0__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: primecli
3
- Version: 0.1.0
3
+ Version: 0.1.2
4
4
  Summary: Command-line tool for the DeltaPrime (Avalanche) and DegenPrime (Base) lending and leverage protocols.
5
5
  Author: Mnemosyne-quest contributors
6
6
  License: MIT
@@ -34,8 +34,9 @@ Dynamic: license-file
34
34
 
35
35
  > Command-line tools for the **DeltaPrime** (Avalanche) and **DegenPrime** (Base) lending and leverage protocols.
36
36
 
37
+ [![PyPI](https://img.shields.io/pypi/v/primecli.svg)](https://pypi.org/project/primecli/)
38
+ [![Python](https://img.shields.io/pypi/pyversions/primecli.svg)](https://pypi.org/project/primecli/)
37
39
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
38
- [![Python](https://img.shields.io/badge/python-3.10%2B-blue.svg)](https://www.python.org/)
39
40
 
40
41
  `primecli` is two `pip`-installable console commands — `deltaprime` and `degenprime` — that drive the lending and leverage protocols by the DeltaPrimeLabs team on Avalanche C-chain and Base. It exposes the full surface most people use day to day: savings pools, per-user Prime / Degen Accounts, ParaSwap and YieldYak swaps, debt refinancing, GMX V2 LP, TraderJoe V2 LB, sJOE staking, PRIME leverage tiers, delayed collateral withdrawals, and a leveraged-long zap macro.
41
42
 
@@ -56,6 +57,12 @@ Full threat model and trust assumptions: [docs/security.md](docs/security.md).
56
57
 
57
58
  Requires Python 3.10+.
58
59
 
60
+ ```bash
61
+ pip install primecli
62
+ ```
63
+
64
+ From the latest `main` (ahead of the most recent release):
65
+
59
66
  ```bash
60
67
  pip install git+https://github.com/Mnemosyne-quest/primecli.git
61
68
  ```
@@ -68,8 +75,6 @@ cd primecli
68
75
  pip install -e .
69
76
  ```
70
77
 
71
- A PyPI release (`pip install primecli`) will follow once the project has been smoke-tested in the wild for a bit. Track [#1](https://github.com/Mnemosyne-quest/primecli/issues/1) if you want a ping.
72
-
73
78
  ## Quickstart
74
79
 
75
80
  ```bash
@@ -2,8 +2,9 @@
2
2
 
3
3
  > Command-line tools for the **DeltaPrime** (Avalanche) and **DegenPrime** (Base) lending and leverage protocols.
4
4
 
5
+ [![PyPI](https://img.shields.io/pypi/v/primecli.svg)](https://pypi.org/project/primecli/)
6
+ [![Python](https://img.shields.io/pypi/pyversions/primecli.svg)](https://pypi.org/project/primecli/)
5
7
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
6
- [![Python](https://img.shields.io/badge/python-3.10%2B-blue.svg)](https://www.python.org/)
7
8
 
8
9
  `primecli` is two `pip`-installable console commands — `deltaprime` and `degenprime` — that drive the lending and leverage protocols by the DeltaPrimeLabs team on Avalanche C-chain and Base. It exposes the full surface most people use day to day: savings pools, per-user Prime / Degen Accounts, ParaSwap and YieldYak swaps, debt refinancing, GMX V2 LP, TraderJoe V2 LB, sJOE staking, PRIME leverage tiers, delayed collateral withdrawals, and a leveraged-long zap macro.
9
10
 
@@ -24,6 +25,12 @@ Full threat model and trust assumptions: [docs/security.md](docs/security.md).
24
25
 
25
26
  Requires Python 3.10+.
26
27
 
28
+ ```bash
29
+ pip install primecli
30
+ ```
31
+
32
+ From the latest `main` (ahead of the most recent release):
33
+
27
34
  ```bash
28
35
  pip install git+https://github.com/Mnemosyne-quest/primecli.git
29
36
  ```
@@ -36,8 +43,6 @@ cd primecli
36
43
  pip install -e .
37
44
  ```
38
45
 
39
- A PyPI release (`pip install primecli`) will follow once the project has been smoke-tested in the wild for a bit. Track [#1](https://github.com/Mnemosyne-quest/primecli/issues/1) if you want a ping.
40
-
41
46
  ## Quickstart
42
47
 
43
48
  ```bash
@@ -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"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: primecli
3
- Version: 0.1.0
3
+ Version: 0.1.2
4
4
  Summary: Command-line tool for the DeltaPrime (Avalanche) and DegenPrime (Base) lending and leverage protocols.
5
5
  Author: Mnemosyne-quest contributors
6
6
  License: MIT
@@ -34,8 +34,9 @@ Dynamic: license-file
34
34
 
35
35
  > Command-line tools for the **DeltaPrime** (Avalanche) and **DegenPrime** (Base) lending and leverage protocols.
36
36
 
37
+ [![PyPI](https://img.shields.io/pypi/v/primecli.svg)](https://pypi.org/project/primecli/)
38
+ [![Python](https://img.shields.io/pypi/pyversions/primecli.svg)](https://pypi.org/project/primecli/)
37
39
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
38
- [![Python](https://img.shields.io/badge/python-3.10%2B-blue.svg)](https://www.python.org/)
39
40
 
40
41
  `primecli` is two `pip`-installable console commands — `deltaprime` and `degenprime` — that drive the lending and leverage protocols by the DeltaPrimeLabs team on Avalanche C-chain and Base. It exposes the full surface most people use day to day: savings pools, per-user Prime / Degen Accounts, ParaSwap and YieldYak swaps, debt refinancing, GMX V2 LP, TraderJoe V2 LB, sJOE staking, PRIME leverage tiers, delayed collateral withdrawals, and a leveraged-long zap macro.
41
42
 
@@ -56,6 +57,12 @@ Full threat model and trust assumptions: [docs/security.md](docs/security.md).
56
57
 
57
58
  Requires Python 3.10+.
58
59
 
60
+ ```bash
61
+ pip install primecli
62
+ ```
63
+
64
+ From the latest `main` (ahead of the most recent release):
65
+
59
66
  ```bash
60
67
  pip install git+https://github.com/Mnemosyne-quest/primecli.git
61
68
  ```
@@ -68,8 +75,6 @@ cd primecli
68
75
  pip install -e .
69
76
  ```
70
77
 
71
- A PyPI release (`pip install primecli`) will follow once the project has been smoke-tested in the wild for a bit. Track [#1](https://github.com/Mnemosyne-quest/primecli/issues/1) if you want a ping.
72
-
73
78
  ## Quickstart
74
79
 
75
80
  ```bash
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "primecli"
7
- version = "0.1.0"
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"
@@ -1,3 +0,0 @@
1
- """primecli - command-line tools for DeltaPrime (Avalanche) and DegenPrime (Base)."""
2
-
3
- __version__ = "0.1.0"
File without changes
File without changes