blocks-network 0.0.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.
@@ -0,0 +1,30 @@
1
+ Metadata-Version: 2.4
2
+ Name: blocks-network
3
+ Version: 0.0.1
4
+ Summary: Python SDK for the Blocks Network
5
+ Project-URL: Homepage, https://github.com/blocksnetwork/blocks-sdk
6
+ Project-URL: Source, https://github.com/blocksnetwork/blocks-sdk
7
+ Project-URL: Issues, https://github.com/blocksnetwork/blocks-sdk/issues
8
+ License-Expression: MIT
9
+ Classifier: Development Status :: 1 - Planning
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Operating System :: OS Independent
12
+ Classifier: Programming Language :: Python :: 3
13
+ Requires-Python: >=3.9
14
+ Description-Content-Type: text/markdown
15
+
16
+ # blocks-network
17
+
18
+ Python SDK for the Blocks Network.
19
+
20
+ ## Installation
21
+
22
+ ```bash
23
+ pip install blocks-network
24
+ ```
25
+
26
+ ## Usage
27
+
28
+ ```python
29
+ import blocks_network
30
+ ```
@@ -0,0 +1,15 @@
1
+ # blocks-network
2
+
3
+ Python SDK for the Blocks Network.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ pip install blocks-network
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```python
14
+ import blocks_network
15
+ ```
@@ -0,0 +1,25 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "blocks-network"
7
+ version = "0.0.1"
8
+ description = "Python SDK for the Blocks Network"
9
+ readme = "README.md"
10
+ license = "MIT"
11
+ requires-python = ">=3.9"
12
+ classifiers = [
13
+ "Development Status :: 1 - Planning",
14
+ "Programming Language :: Python :: 3",
15
+ "License :: OSI Approved :: MIT License",
16
+ "Operating System :: OS Independent",
17
+ ]
18
+
19
+ [project.urls]
20
+ Homepage = "https://github.com/blocksnetwork/blocks-sdk"
21
+ Source = "https://github.com/blocksnetwork/blocks-sdk"
22
+ Issues = "https://github.com/blocksnetwork/blocks-sdk/issues"
23
+
24
+ [tool.hatch.build.targets.wheel]
25
+ packages = ["src/blocks_network"]
@@ -0,0 +1,3 @@
1
+ """Python SDK for the Blocks Network."""
2
+
3
+ __version__ = "0.0.1"
File without changes