wnm 0.0.8__tar.gz → 0.0.9__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.
Potentially problematic release.
This version of wnm might be problematic. Click here for more details.
- {wnm-0.0.8 → wnm-0.0.9}/PKG-INFO +4 -2
- {wnm-0.0.8 → wnm-0.0.9}/README.md +1 -1
- {wnm-0.0.8 → wnm-0.0.9}/pyproject.toml +10 -2
- {wnm-0.0.8 → wnm-0.0.9/src}/wnm/__init__.py +1 -1
- wnm-0.0.9/src/wnm/__main__.py +1185 -0
- {wnm-0.0.8 → wnm-0.0.9/src}/wnm/models.py +151 -63
- {wnm-0.0.8 → wnm-0.0.9/src}/wnm.egg-info/PKG-INFO +4 -2
- wnm-0.0.9/src/wnm.egg-info/SOURCES.txt +15 -0
- wnm-0.0.9/src/wnm.egg-info/top_level.txt +1 -0
- wnm-0.0.8/wnm/__main__.py +0 -983
- wnm-0.0.8/wnm.egg-info/SOURCES.txt +0 -15
- wnm-0.0.8/wnm.egg-info/top_level.txt +0 -3
- {wnm-0.0.8 → wnm-0.0.9}/requirements-dev.txt +0 -0
- {wnm-0.0.8 → wnm-0.0.9}/requirements.txt +0 -0
- {wnm-0.0.8 → wnm-0.0.9}/setup.cfg +0 -0
- {wnm-0.0.8 → wnm-0.0.9/src}/wnm/config.py +0 -0
- {wnm-0.0.8 → wnm-0.0.9/src}/wnm.egg-info/dependency_links.txt +0 -0
- {wnm-0.0.8 → wnm-0.0.9/src}/wnm.egg-info/entry_points.txt +0 -0
- {wnm-0.0.8 → wnm-0.0.9/src}/wnm.egg-info/requires.txt +0 -0
{wnm-0.0.8 → wnm-0.0.9}/PKG-INFO
RENAMED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: wnm
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.9
|
|
4
4
|
Summary: Manager for Autonomi nodes
|
|
5
5
|
Author-email: Troy Johnson <troy@weave.sh>
|
|
6
6
|
License: GPL-3.0
|
|
7
|
+
Project-URL: Repository, https://github.com/iweave/weave-node-manager.git
|
|
8
|
+
Project-URL: Issues, https://github.com/iweave/weave-node-manager/issues
|
|
7
9
|
Keywords: Autonomi,antnode,weave,xd7
|
|
8
10
|
Classifier: Development Status :: 3 - Alpha
|
|
9
11
|
Classifier: Environment :: Console
|
|
@@ -70,7 +72,7 @@ Weave Node Manager (wnm) is a Python application designed to manage nodes for de
|
|
|
70
72
|
```
|
|
71
73
|
echo <<EOF
|
|
72
74
|
SHELL=/bin/bash
|
|
73
|
-
PATH=/home/ubuntu/.local/bin:/home/ubuntu/wnm
|
|
75
|
+
PATH=/home/ubuntu/.local/bin:/home/ubuntu/wnm/.venv/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
|
|
74
76
|
*/1 * * * * ubuntu cd /home/ubuntu/wnm && wnm > /home/ubuntu/wnm/cron.out 2>&1
|
|
75
77
|
EOF
|
|
76
78
|
```
|
|
@@ -40,7 +40,7 @@ Weave Node Manager (wnm) is a Python application designed to manage nodes for de
|
|
|
40
40
|
```
|
|
41
41
|
echo <<EOF
|
|
42
42
|
SHELL=/bin/bash
|
|
43
|
-
PATH=/home/ubuntu/.local/bin:/home/ubuntu/wnm
|
|
43
|
+
PATH=/home/ubuntu/.local/bin:/home/ubuntu/wnm/.venv/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
|
|
44
44
|
*/1 * * * * ubuntu cd /home/ubuntu/wnm && wnm > /home/ubuntu/wnm/cron.out 2>&1
|
|
45
45
|
EOF
|
|
46
46
|
```
|
|
@@ -11,7 +11,7 @@ description = "Manager for Autonomi nodes"
|
|
|
11
11
|
license = {text = "GPL-3.0"}
|
|
12
12
|
keywords = ["Autonomi", "antnode", "weave", "xd7"]
|
|
13
13
|
dynamic = ["version", "dependencies", "optional-dependencies"]
|
|
14
|
-
readme = "README.md"
|
|
14
|
+
readme = {file = "README.md", content-type = "text/markdown"}
|
|
15
15
|
requires-python = ">=3.12.3"
|
|
16
16
|
classifiers = [
|
|
17
17
|
"Development Status :: 3 - Alpha",
|
|
@@ -24,6 +24,9 @@ classifiers = [
|
|
|
24
24
|
"Topic :: System :: Distributed Computing",
|
|
25
25
|
]
|
|
26
26
|
|
|
27
|
+
[project.urls]
|
|
28
|
+
Repository = "https://github.com/iweave/weave-node-manager.git"
|
|
29
|
+
Issues = "https://github.com/iweave/weave-node-manager/issues"
|
|
27
30
|
|
|
28
31
|
[project.scripts]
|
|
29
32
|
wnm = "wnm.__main__:main"
|
|
@@ -34,5 +37,10 @@ optional-dependencies.dev = { file = ["requirements-dev.txt"] }
|
|
|
34
37
|
version = {attr = "wnm.__version__"}
|
|
35
38
|
|
|
36
39
|
[tool.setuptools.packages.find]
|
|
37
|
-
where = ["
|
|
40
|
+
where = ["src"]
|
|
38
41
|
|
|
42
|
+
[tool.black]
|
|
43
|
+
line-length = 88
|
|
44
|
+
|
|
45
|
+
[tool.isort]
|
|
46
|
+
profile = "black"
|