meshpop-wire 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.
- meshpop_wire-0.0.1/PKG-INFO +21 -0
- meshpop_wire-0.0.1/README.md +7 -0
- meshpop_wire-0.0.1/meshpop_wire/__init__.py +1 -0
- meshpop_wire-0.0.1/meshpop_wire.egg-info/PKG-INFO +21 -0
- meshpop_wire-0.0.1/meshpop_wire.egg-info/SOURCES.txt +7 -0
- meshpop_wire-0.0.1/meshpop_wire.egg-info/dependency_links.txt +1 -0
- meshpop_wire-0.0.1/meshpop_wire.egg-info/top_level.txt +1 -0
- meshpop_wire-0.0.1/pyproject.toml +21 -0
- meshpop_wire-0.0.1/setup.cfg +4 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: meshpop-wire
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: MeshPOP Wire — WireGuard mesh VPN manager
|
|
5
|
+
Author-email: MeshPOP <dragon@meshpop.dev>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/meshpop/wire
|
|
8
|
+
Keywords: wireguard,vpn,mesh,network
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Requires-Python: >=3.8
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
# meshpop-wire
|
|
16
|
+
|
|
17
|
+
MeshPOP Wire — WireGuard mesh VPN manager.
|
|
18
|
+
|
|
19
|
+
> This package is a placeholder. Full release coming soon.
|
|
20
|
+
|
|
21
|
+
See [github.com/meshpop/wire](https://github.com/meshpop/wire) for source.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""MeshPOP Wire — WireGuard mesh VPN manager"""
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: meshpop-wire
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: MeshPOP Wire — WireGuard mesh VPN manager
|
|
5
|
+
Author-email: MeshPOP <dragon@meshpop.dev>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/meshpop/wire
|
|
8
|
+
Keywords: wireguard,vpn,mesh,network
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Requires-Python: >=3.8
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
# meshpop-wire
|
|
16
|
+
|
|
17
|
+
MeshPOP Wire — WireGuard mesh VPN manager.
|
|
18
|
+
|
|
19
|
+
> This package is a placeholder. Full release coming soon.
|
|
20
|
+
|
|
21
|
+
See [github.com/meshpop/wire](https://github.com/meshpop/wire) for source.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
meshpop_wire
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "meshpop-wire"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "MeshPOP Wire — WireGuard mesh VPN manager"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = {text = "MIT"}
|
|
11
|
+
requires-python = ">=3.8"
|
|
12
|
+
authors = [{name = "MeshPOP", email = "dragon@meshpop.dev"}]
|
|
13
|
+
keywords = ["wireguard", "vpn", "mesh", "network"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"License :: OSI Approved :: MIT License",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[project.urls]
|
|
21
|
+
Homepage = "https://github.com/meshpop/wire"
|