mm-btc 0.1.0__tar.gz → 0.1.1__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.
Files changed (26) hide show
  1. {mm_btc-0.1.0 → mm_btc-0.1.1}/PKG-INFO +3 -2
  2. {mm_btc-0.1.0 → mm_btc-0.1.1}/pyproject.toml +5 -3
  3. {mm_btc-0.1.0 → mm_btc-0.1.1}/uv.lock +6 -2
  4. {mm_btc-0.1.0 → mm_btc-0.1.1}/.env.example +0 -0
  5. {mm_btc-0.1.0 → mm_btc-0.1.1}/.gitignore +0 -0
  6. {mm_btc-0.1.0 → mm_btc-0.1.1}/README.txt +0 -0
  7. {mm_btc-0.1.0 → mm_btc-0.1.1}/justfile +0 -0
  8. {mm_btc-0.1.0 → mm_btc-0.1.1}/src/mm_btc/__init__.py +0 -0
  9. {mm_btc-0.1.0 → mm_btc-0.1.1}/src/mm_btc/blockstream.py +0 -0
  10. {mm_btc-0.1.0 → mm_btc-0.1.1}/src/mm_btc/cli/__init__.py +0 -0
  11. {mm_btc-0.1.0 → mm_btc-0.1.1}/src/mm_btc/cli/cli.py +0 -0
  12. {mm_btc-0.1.0 → mm_btc-0.1.1}/src/mm_btc/cli/cli_utils.py +0 -0
  13. {mm_btc-0.1.0 → mm_btc-0.1.1}/src/mm_btc/cli/cmd/__init__.py +0 -0
  14. {mm_btc-0.1.0 → mm_btc-0.1.1}/src/mm_btc/cli/cmd/address_cmd.py +0 -0
  15. {mm_btc-0.1.0 → mm_btc-0.1.1}/src/mm_btc/cli/cmd/create_tx_cmd.py +0 -0
  16. {mm_btc-0.1.0 → mm_btc-0.1.1}/src/mm_btc/cli/cmd/decode_tx_cmd.py +0 -0
  17. {mm_btc-0.1.0 → mm_btc-0.1.1}/src/mm_btc/cli/cmd/mnemonic_cmd.py +0 -0
  18. {mm_btc-0.1.0 → mm_btc-0.1.1}/src/mm_btc/cli/cmd/utxo_cmd.py +0 -0
  19. {mm_btc-0.1.0 → mm_btc-0.1.1}/src/mm_btc/py.typed +0 -0
  20. {mm_btc-0.1.0 → mm_btc-0.1.1}/src/mm_btc/tx.py +0 -0
  21. {mm_btc-0.1.0 → mm_btc-0.1.1}/src/mm_btc/wallet.py +0 -0
  22. {mm_btc-0.1.0 → mm_btc-0.1.1}/tests/__init__.py +0 -0
  23. {mm_btc-0.1.0 → mm_btc-0.1.1}/tests/cli/cmd/test_mnemonic_cmd.py +0 -0
  24. {mm_btc-0.1.0 → mm_btc-0.1.1}/tests/conftest.py +0 -0
  25. {mm_btc-0.1.0 → mm_btc-0.1.1}/tests/test_blockstream.py +0 -0
  26. {mm_btc-0.1.0 → mm_btc-0.1.1}/tests/test_wallet.py +0 -0
@@ -1,9 +1,10 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: mm-btc
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Requires-Python: >=3.12
5
5
  Requires-Dist: bitcoinlib~=0.6.15
6
6
  Requires-Dist: bit~=0.8.0
7
7
  Requires-Dist: hdwallet~=2.2.1
8
8
  Requires-Dist: mm-std~=0.1.2
9
- Requires-Dist: typer~=0.12.3
9
+ Provides-Extra: cli
10
+ Requires-Dist: typer~=0.12.5; extra == 'cli'
@@ -1,15 +1,17 @@
1
1
  [project]
2
2
  name = "mm-btc"
3
- version = "0.1.0"
3
+ version = "0.1.1"
4
4
  description = ""
5
+ requires-python = ">=3.12"
5
6
  dependencies = [
6
7
  "mm-std~=0.1.2",
7
8
  "hdwallet~=2.2.1",
8
9
  "bit~=0.8.0",
9
10
  "bitcoinlib~=0.6.15",
10
- "typer~=0.12.3"
11
+
11
12
  ]
12
- requires-python = ">=3.12"
13
+ [project.optional-dependencies]
14
+ cli = ["typer~=0.12.5"]
13
15
  [project.scripts]
14
16
  mm-btc = "mm_btc.cli.cli:app"
15
17
 
@@ -558,13 +558,17 @@ wheels = [
558
558
 
559
559
  [[package]]
560
560
  name = "mm-btc"
561
- version = "0.1.0"
561
+ version = "0.1.1"
562
562
  source = { editable = "." }
563
563
  dependencies = [
564
564
  { name = "bit" },
565
565
  { name = "bitcoinlib" },
566
566
  { name = "hdwallet" },
567
567
  { name = "mm-std" },
568
+ ]
569
+
570
+ [package.optional-dependencies]
571
+ cli = [
568
572
  { name = "typer" },
569
573
  ]
570
574
 
@@ -588,7 +592,7 @@ requires-dist = [
588
592
  { name = "bitcoinlib", specifier = "~=0.6.15" },
589
593
  { name = "hdwallet", specifier = "~=2.2.1" },
590
594
  { name = "mm-std", specifier = "~=0.1.2" },
591
- { name = "typer", specifier = "~=0.12.3" },
595
+ { name = "typer", marker = "extra == 'cli'", specifier = "~=0.12.5" },
592
596
  ]
593
597
 
594
598
  [package.metadata.requires-dev]
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
File without changes
File without changes
File without changes