xbot.plugins.ssh 0.2.0__tar.gz → 0.2.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.
Files changed (22) hide show
  1. {xbot_plugins_ssh-0.2.0/xbot.plugins.ssh.egg-info → xbot_plugins_ssh-0.2.1}/PKG-INFO +3 -3
  2. {xbot_plugins_ssh-0.2.0 → xbot_plugins_ssh-0.2.1}/pyproject.toml +2 -2
  3. xbot_plugins_ssh-0.2.1/xbot/plugins/ssh/version.py +3 -0
  4. {xbot_plugins_ssh-0.2.0 → xbot_plugins_ssh-0.2.1/xbot.plugins.ssh.egg-info}/PKG-INFO +3 -3
  5. {xbot_plugins_ssh-0.2.0 → xbot_plugins_ssh-0.2.1}/xbot.plugins.ssh.egg-info/SOURCES.txt +2 -1
  6. {xbot_plugins_ssh-0.2.0 → xbot_plugins_ssh-0.2.1}/LICENSE +0 -0
  7. {xbot_plugins_ssh-0.2.0 → xbot_plugins_ssh-0.2.1}/README.md +0 -0
  8. {xbot_plugins_ssh-0.2.0 → xbot_plugins_ssh-0.2.1}/README.zh.md +0 -0
  9. {xbot_plugins_ssh-0.2.0 → xbot_plugins_ssh-0.2.1}/setup.cfg +0 -0
  10. {xbot_plugins_ssh-0.2.0 → xbot_plugins_ssh-0.2.1}/setup.py +0 -0
  11. {xbot_plugins_ssh-0.2.0 → xbot_plugins_ssh-0.2.1}/tests/test_sftp.py +0 -0
  12. {xbot_plugins_ssh-0.2.0 → xbot_plugins_ssh-0.2.1}/tests/test_ssh.py +0 -0
  13. {xbot_plugins_ssh-0.2.0 → xbot_plugins_ssh-0.2.1}/tests/test_utils.py +0 -0
  14. {xbot_plugins_ssh-0.2.0 → xbot_plugins_ssh-0.2.1}/xbot/plugins/ssh/__init__.py +0 -0
  15. {xbot_plugins_ssh-0.2.0 → xbot_plugins_ssh-0.2.1}/xbot/plugins/ssh/errors.py +0 -0
  16. {xbot_plugins_ssh-0.2.0 → xbot_plugins_ssh-0.2.1}/xbot/plugins/ssh/py.typed +0 -0
  17. {xbot_plugins_ssh-0.2.0 → xbot_plugins_ssh-0.2.1}/xbot/plugins/ssh/sftp.py +0 -0
  18. {xbot_plugins_ssh-0.2.0 → xbot_plugins_ssh-0.2.1}/xbot/plugins/ssh/ssh.py +0 -0
  19. {xbot_plugins_ssh-0.2.0 → xbot_plugins_ssh-0.2.1}/xbot/plugins/ssh/utils.py +0 -0
  20. {xbot_plugins_ssh-0.2.0 → xbot_plugins_ssh-0.2.1}/xbot.plugins.ssh.egg-info/dependency_links.txt +0 -0
  21. {xbot_plugins_ssh-0.2.0 → xbot_plugins_ssh-0.2.1}/xbot.plugins.ssh.egg-info/requires.txt +0 -0
  22. {xbot_plugins_ssh-0.2.0 → xbot_plugins_ssh-0.2.1}/xbot.plugins.ssh.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: xbot.plugins.ssh
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: SSH library for xbot.framework
5
5
  Author-email: zhaowcheng <zhaowcheng@163.com>
6
6
  License-Expression: BSD-2-Clause
@@ -141,7 +141,7 @@ with sftpconn.open(p, 'r') as fp:
141
141
 
142
142
  ## Demo Project
143
143
 
144
- Here is a [demo](https://github.com/zhaowcheng/xbot.plugins.ssh/tree/v0.2.0/demo) project showing how to use `xbot.plugins.ssh` in a test project.
144
+ Here is a [demo](https://github.com/zhaowcheng/xbot.plugins.ssh/tree/v/demo) project showing how to use `xbot.plugins.ssh` in a test project.
145
145
 
146
146
  ***
147
147
 
@@ -266,4 +266,4 @@ with sftpconn.open(p, 'r') as fp:
266
266
 
267
267
  ## 示例项目
268
268
 
269
- 展示如何在一个测试项目中使用本插件的示例:[demo](https://github.com/zhaowcheng/xbot.plugins.ssh/tree/v0.2.0/demo)
269
+ 展示如何在一个测试项目中使用本插件的示例:[demo](https://github.com/zhaowcheng/xbot.plugins.ssh/tree/v/demo)
@@ -4,7 +4,6 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "xbot.plugins.ssh"
7
- version = "0.2.0"
8
7
  description = "SSH library for xbot.framework"
9
8
  authors = [
10
9
  { name = "zhaowcheng", email = "zhaowcheng@163.com" },
@@ -23,13 +22,14 @@ classifiers = [
23
22
  "Programming Language :: Python :: 3.11",
24
23
  "Programming Language :: Python :: 3.12",
25
24
  ]
26
- dynamic = ["readme"]
25
+ dynamic = ["version", "readme"]
27
26
 
28
27
  [project.urls]
29
28
  Homepage = "https://github.com/zhaowcheng/xbot.plugins.ssh"
30
29
  Issues = "https://github.com/zhaowcheng/xbot.plugins.ssh/issues"
31
30
 
32
31
  [tool.setuptools.dynamic]
32
+ version = { attr = "xbot.plugins.ssh.version.__version__" }
33
33
 
34
34
  [tool.setuptools.packages.find]
35
35
  include = ["xbot.plugins.ssh*"]
@@ -0,0 +1,3 @@
1
+ """Package version."""
2
+
3
+ __version__: str = "0.2.1"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: xbot.plugins.ssh
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: SSH library for xbot.framework
5
5
  Author-email: zhaowcheng <zhaowcheng@163.com>
6
6
  License-Expression: BSD-2-Clause
@@ -141,7 +141,7 @@ with sftpconn.open(p, 'r') as fp:
141
141
 
142
142
  ## Demo Project
143
143
 
144
- Here is a [demo](https://github.com/zhaowcheng/xbot.plugins.ssh/tree/v0.2.0/demo) project showing how to use `xbot.plugins.ssh` in a test project.
144
+ Here is a [demo](https://github.com/zhaowcheng/xbot.plugins.ssh/tree/v/demo) project showing how to use `xbot.plugins.ssh` in a test project.
145
145
 
146
146
  ***
147
147
 
@@ -266,4 +266,4 @@ with sftpconn.open(p, 'r') as fp:
266
266
 
267
267
  ## 示例项目
268
268
 
269
- 展示如何在一个测试项目中使用本插件的示例:[demo](https://github.com/zhaowcheng/xbot.plugins.ssh/tree/v0.2.0/demo)
269
+ 展示如何在一个测试项目中使用本插件的示例:[demo](https://github.com/zhaowcheng/xbot.plugins.ssh/tree/v/demo)
@@ -16,4 +16,5 @@ xbot/plugins/ssh/errors.py
16
16
  xbot/plugins/ssh/py.typed
17
17
  xbot/plugins/ssh/sftp.py
18
18
  xbot/plugins/ssh/ssh.py
19
- xbot/plugins/ssh/utils.py
19
+ xbot/plugins/ssh/utils.py
20
+ xbot/plugins/ssh/version.py