myscelium-net 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.
- myscelium_net-0.0.1/PKG-INFO +31 -0
- myscelium_net-0.0.1/README.md +13 -0
- myscelium_net-0.0.1/pyproject.toml +35 -0
- myscelium_net-0.0.1/setup.cfg +4 -0
- myscelium_net-0.0.1/src/myscelium_net/__init__.py +6 -0
- myscelium_net-0.0.1/src/myscelium_net/py.typed +1 -0
- myscelium_net-0.0.1/src/myscelium_net.egg-info/PKG-INFO +31 -0
- myscelium_net-0.0.1/src/myscelium_net.egg-info/SOURCES.txt +9 -0
- myscelium_net-0.0.1/src/myscelium_net.egg-info/dependency_links.txt +1 -0
- myscelium_net-0.0.1/src/myscelium_net.egg-info/requires.txt +1 -0
- myscelium_net-0.0.1/src/myscelium_net.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: myscelium-net
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Canonical networking configuration primitives for Myscelium
|
|
5
|
+
Author-email: Cristian Camargo Filho <ccf@cdone.com.br>
|
|
6
|
+
License-Expression: MPL-2.0
|
|
7
|
+
Project-URL: Homepage, https://github.com/Myscelium/myscelium
|
|
8
|
+
Project-URL: Repository, https://github.com/Myscelium/myscelium
|
|
9
|
+
Project-URL: Issues, https://github.com/Myscelium/myscelium/issues
|
|
10
|
+
Keywords: myscelium,mycelium,networking,protocol,transport
|
|
11
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
14
|
+
Classifier: Typing :: Typed
|
|
15
|
+
Requires-Python: >=3.10
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
Requires-Dist: mycelium-net<0.1,>=0.0.1
|
|
18
|
+
|
|
19
|
+
# myscelium-net
|
|
20
|
+
|
|
21
|
+
Canonical-spelling networking configuration primitives for Myscelium.
|
|
22
|
+
|
|
23
|
+
Version `0.0.1` re-exports the typed `NetworkProfile` and `TransportKind` API
|
|
24
|
+
from the project-owned `mycelium-net` distribution. It describes network
|
|
25
|
+
configuration and does not start network services.
|
|
26
|
+
|
|
27
|
+
```python
|
|
28
|
+
from myscelium_net import NetworkProfile
|
|
29
|
+
|
|
30
|
+
profile = NetworkProfile(transport="in_memory")
|
|
31
|
+
```
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# myscelium-net
|
|
2
|
+
|
|
3
|
+
Canonical-spelling networking configuration primitives for Myscelium.
|
|
4
|
+
|
|
5
|
+
Version `0.0.1` re-exports the typed `NetworkProfile` and `TransportKind` API
|
|
6
|
+
from the project-owned `mycelium-net` distribution. It describes network
|
|
7
|
+
configuration and does not start network services.
|
|
8
|
+
|
|
9
|
+
```python
|
|
10
|
+
from myscelium_net import NetworkProfile
|
|
11
|
+
|
|
12
|
+
profile = NetworkProfile(transport="in_memory")
|
|
13
|
+
```
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=77", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "myscelium-net"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Canonical networking configuration primitives for Myscelium"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
license = "MPL-2.0"
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "Cristian Camargo Filho", email = "ccf@cdone.com.br" },
|
|
14
|
+
]
|
|
15
|
+
dependencies = [
|
|
16
|
+
"mycelium-net>=0.0.1,<0.1",
|
|
17
|
+
]
|
|
18
|
+
keywords = ["myscelium", "mycelium", "networking", "protocol", "transport"]
|
|
19
|
+
classifiers = [
|
|
20
|
+
"Development Status :: 2 - Pre-Alpha",
|
|
21
|
+
"Programming Language :: Python :: 3",
|
|
22
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
23
|
+
"Typing :: Typed",
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
[project.urls]
|
|
27
|
+
Homepage = "https://github.com/Myscelium/myscelium"
|
|
28
|
+
Repository = "https://github.com/Myscelium/myscelium"
|
|
29
|
+
Issues = "https://github.com/Myscelium/myscelium/issues"
|
|
30
|
+
|
|
31
|
+
[tool.setuptools.packages.find]
|
|
32
|
+
where = ["src"]
|
|
33
|
+
|
|
34
|
+
[tool.setuptools.package-data]
|
|
35
|
+
myscelium_net = ["py.typed"]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: myscelium-net
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Canonical networking configuration primitives for Myscelium
|
|
5
|
+
Author-email: Cristian Camargo Filho <ccf@cdone.com.br>
|
|
6
|
+
License-Expression: MPL-2.0
|
|
7
|
+
Project-URL: Homepage, https://github.com/Myscelium/myscelium
|
|
8
|
+
Project-URL: Repository, https://github.com/Myscelium/myscelium
|
|
9
|
+
Project-URL: Issues, https://github.com/Myscelium/myscelium/issues
|
|
10
|
+
Keywords: myscelium,mycelium,networking,protocol,transport
|
|
11
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
14
|
+
Classifier: Typing :: Typed
|
|
15
|
+
Requires-Python: >=3.10
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
Requires-Dist: mycelium-net<0.1,>=0.0.1
|
|
18
|
+
|
|
19
|
+
# myscelium-net
|
|
20
|
+
|
|
21
|
+
Canonical-spelling networking configuration primitives for Myscelium.
|
|
22
|
+
|
|
23
|
+
Version `0.0.1` re-exports the typed `NetworkProfile` and `TransportKind` API
|
|
24
|
+
from the project-owned `mycelium-net` distribution. It describes network
|
|
25
|
+
configuration and does not start network services.
|
|
26
|
+
|
|
27
|
+
```python
|
|
28
|
+
from myscelium_net import NetworkProfile
|
|
29
|
+
|
|
30
|
+
profile = NetworkProfile(transport="in_memory")
|
|
31
|
+
```
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
README.md
|
|
2
|
+
pyproject.toml
|
|
3
|
+
src/myscelium_net/__init__.py
|
|
4
|
+
src/myscelium_net/py.typed
|
|
5
|
+
src/myscelium_net.egg-info/PKG-INFO
|
|
6
|
+
src/myscelium_net.egg-info/SOURCES.txt
|
|
7
|
+
src/myscelium_net.egg-info/dependency_links.txt
|
|
8
|
+
src/myscelium_net.egg-info/requires.txt
|
|
9
|
+
src/myscelium_net.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
mycelium-net<0.1,>=0.0.1
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
myscelium_net
|