vssh 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.
- vssh-0.0.1/PKG-INFO +21 -0
- vssh-0.0.1/README.md +7 -0
- vssh-0.0.1/pyproject.toml +21 -0
- vssh-0.0.1/setup.cfg +4 -0
- vssh-0.0.1/vssh/__init__.py +1 -0
- vssh-0.0.1/vssh.egg-info/PKG-INFO +21 -0
- vssh-0.0.1/vssh.egg-info/SOURCES.txt +7 -0
- vssh-0.0.1/vssh.egg-info/dependency_links.txt +1 -0
- vssh-0.0.1/vssh.egg-info/top_level.txt +1 -0
vssh-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: vssh
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: vssh — Distributed command & file transport daemon
|
|
5
|
+
Author-email: MeshPOP <dragon@meshpop.dev>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/meshpop/vssh
|
|
8
|
+
Keywords: ssh,distributed,transport,cluster,daemon
|
|
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
|
+
# vssh
|
|
16
|
+
|
|
17
|
+
Distributed command & file transport daemon.
|
|
18
|
+
|
|
19
|
+
> This package is a placeholder. Full release coming soon.
|
|
20
|
+
|
|
21
|
+
See [github.com/meshpop/vssh](https://github.com/meshpop/vssh) for source.
|
vssh-0.0.1/README.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "vssh"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "vssh — Distributed command & file transport daemon"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = {text = "MIT"}
|
|
11
|
+
requires-python = ">=3.8"
|
|
12
|
+
authors = [{name = "MeshPOP", email = "dragon@meshpop.dev"}]
|
|
13
|
+
keywords = ["ssh", "distributed", "transport", "cluster", "daemon"]
|
|
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/vssh"
|
vssh-0.0.1/setup.cfg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""vssh — Distributed command & file transport daemon"""
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: vssh
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: vssh — Distributed command & file transport daemon
|
|
5
|
+
Author-email: MeshPOP <dragon@meshpop.dev>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/meshpop/vssh
|
|
8
|
+
Keywords: ssh,distributed,transport,cluster,daemon
|
|
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
|
+
# vssh
|
|
16
|
+
|
|
17
|
+
Distributed command & file transport daemon.
|
|
18
|
+
|
|
19
|
+
> This package is a placeholder. Full release coming soon.
|
|
20
|
+
|
|
21
|
+
See [github.com/meshpop/vssh](https://github.com/meshpop/vssh) for source.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
vssh
|