bitcoinwatcher 0.1.4__tar.gz → 0.1.6__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 (22) hide show
  1. {bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/PKG-INFO +1 -2
  2. {bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/bitcoinwatcher.egg-info/PKG-INFO +1 -2
  3. {bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/bitcoinwatcher.egg-info/requires.txt +0 -1
  4. {bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/pyproject.toml +1 -2
  5. {bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/LICENSE +0 -0
  6. {bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/README.md +0 -0
  7. {bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/bitcoin/__init__.py +0 -0
  8. {bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/bitcoin/address_listener/__init__.py +0 -0
  9. {bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/bitcoin/address_listener/address_listener.py +0 -0
  10. {bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/bitcoin/address_listener/simple_address_listener.py +0 -0
  11. {bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/bitcoin/tests/__init__.py +0 -0
  12. {bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/bitcoin/tests/test_address_listener.py +0 -0
  13. {bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/bitcoin/tx_listener/__init__.py +0 -0
  14. {bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/bitcoin/tx_listener/abstract_tx_listener.py +0 -0
  15. {bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/bitcoin/tx_listener/zmq_listener.py +0 -0
  16. {bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/bitcoin/utils/__init__.py +0 -0
  17. {bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/bitcoin/utils/bitcoin_utils.py +0 -0
  18. {bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/bitcoin/utils/inscription_utils.py +0 -0
  19. {bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/bitcoinwatcher.egg-info/SOURCES.txt +0 -0
  20. {bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/bitcoinwatcher.egg-info/dependency_links.txt +0 -0
  21. {bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/bitcoinwatcher.egg-info/top_level.txt +0 -0
  22. {bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: bitcoinwatcher
3
- Version: 0.1.4
3
+ Version: 0.1.6
4
4
  Summary: bitcoinwatcher is a Python library that implements a ZMQ subscriber and provides abstractions to build custom address watchers. This library is designed to make it easy for developers to monitor Bitcoin addresses and react to changes in their state.
5
5
  Author: twosatsmaxi
6
6
  License: Apache License
@@ -221,7 +221,6 @@ Requires-Dist: requests~=2.31.0
221
221
  Requires-Dist: certifi==2024.2.2
222
222
  Requires-Dist: charset-normalizer==3.3.2
223
223
  Requires-Dist: idna==3.6
224
- Requires-Dist: PyGObject==3.46.0
225
224
  Requires-Dist: pyzmq==25.1.2
226
225
  Requires-Dist: requests==2.31.0
227
226
  Requires-Dist: six==1.16.0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: bitcoinwatcher
3
- Version: 0.1.4
3
+ Version: 0.1.6
4
4
  Summary: bitcoinwatcher is a Python library that implements a ZMQ subscriber and provides abstractions to build custom address watchers. This library is designed to make it easy for developers to monitor Bitcoin addresses and react to changes in their state.
5
5
  Author: twosatsmaxi
6
6
  License: Apache License
@@ -221,7 +221,6 @@ Requires-Dist: requests~=2.31.0
221
221
  Requires-Dist: certifi==2024.2.2
222
222
  Requires-Dist: charset-normalizer==3.3.2
223
223
  Requires-Dist: idna==3.6
224
- Requires-Dist: PyGObject==3.46.0
225
224
  Requires-Dist: pyzmq==25.1.2
226
225
  Requires-Dist: requests==2.31.0
227
226
  Requires-Dist: six==1.16.0
@@ -2,7 +2,6 @@ requests~=2.31.0
2
2
  certifi==2024.2.2
3
3
  charset-normalizer==3.3.2
4
4
  idna==3.6
5
- PyGObject==3.46.0
6
5
  pyzmq==25.1.2
7
6
  requests==2.31.0
8
7
  six==1.16.0
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
5
5
 
6
6
  [project]
7
7
  name = "bitcoinwatcher"
8
- version = "0.1.4"
8
+ version = "0.1.6"
9
9
  description = "bitcoinwatcher is a Python library that implements a ZMQ subscriber and provides abstractions to build custom address watchers. This library is designed to make it easy for developers to monitor Bitcoin addresses and react to changes in their state."
10
10
  readme = "README.md"
11
11
  authors = [{name = "twosatsmaxi"}]
@@ -27,7 +27,6 @@ dependencies = [
27
27
  "certifi==2024.2.2",
28
28
  "charset-normalizer==3.3.2",
29
29
  "idna==3.6",
30
- "PyGObject==3.46.0",
31
30
  "pyzmq==25.1.2",
32
31
  "requests==2.31.0",
33
32
  "six==1.16.0",
File without changes
File without changes
File without changes