cubething_psync 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 (21) hide show
  1. {cubething_psync-0.2.0/src/cubething_psync.egg-info → cubething_psync-0.2.1}/PKG-INFO +1 -1
  2. {cubething_psync-0.2.0 → cubething_psync-0.2.1}/pyproject.toml +1 -1
  3. {cubething_psync-0.2.0 → cubething_psync-0.2.1}/src/client/main.py +1 -7
  4. {cubething_psync-0.2.0 → cubething_psync-0.2.1/src/cubething_psync.egg-info}/PKG-INFO +1 -1
  5. {cubething_psync-0.2.0 → cubething_psync-0.2.1}/LICENSE +0 -0
  6. {cubething_psync-0.2.0 → cubething_psync-0.2.1}/README.md +0 -0
  7. {cubething_psync-0.2.0 → cubething_psync-0.2.1}/setup.cfg +0 -0
  8. {cubething_psync-0.2.0 → cubething_psync-0.2.1}/src/client/__init__.py +0 -0
  9. {cubething_psync-0.2.0 → cubething_psync-0.2.1}/src/client/__main__.py +0 -0
  10. {cubething_psync-0.2.0 → cubething_psync-0.2.1}/src/client/args.py +0 -0
  11. {cubething_psync-0.2.0 → cubething_psync-0.2.1}/src/common/__init__.py +0 -0
  12. {cubething_psync-0.2.0 → cubething_psync-0.2.1}/src/common/data.py +0 -0
  13. {cubething_psync-0.2.0 → cubething_psync-0.2.1}/src/common/log.py +0 -0
  14. {cubething_psync-0.2.0 → cubething_psync-0.2.1}/src/cubething_psync.egg-info/SOURCES.txt +0 -0
  15. {cubething_psync-0.2.0 → cubething_psync-0.2.1}/src/cubething_psync.egg-info/dependency_links.txt +0 -0
  16. {cubething_psync-0.2.0 → cubething_psync-0.2.1}/src/cubething_psync.egg-info/entry_points.txt +0 -0
  17. {cubething_psync-0.2.0 → cubething_psync-0.2.1}/src/cubething_psync.egg-info/requires.txt +0 -0
  18. {cubething_psync-0.2.0 → cubething_psync-0.2.1}/src/cubething_psync.egg-info/top_level.txt +0 -0
  19. {cubething_psync-0.2.0 → cubething_psync-0.2.1}/src/server/__init__.py +0 -0
  20. {cubething_psync-0.2.0 → cubething_psync-0.2.1}/src/server/__main__.py +0 -0
  21. {cubething_psync-0.2.0 → cubething_psync-0.2.1}/src/server/main.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cubething_psync
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: Simple project synchronization tool.
5
5
  Author-email: ada mandala <ada@cubething.dev>
6
6
  License-Expression: MIT
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "cubething_psync"
3
- version = "0.2.0"
3
+ version = "0.2.1"
4
4
  description = "Simple project synchronization tool."
5
5
  authors = [{name = "ada mandala", email="ada@cubething.dev"}]
6
6
  readme = "README.md"
@@ -40,12 +40,6 @@ class PsyncClient:
40
40
  rsync, then execute them remotely while receiving the logs.
41
41
 
42
42
  CLI arguments: ::
43
-
44
- usage: psync-client [-h] --path PATH [--extra EXTRA [EXTRA ...]] [--env ENV] [--args ARGS]
45
-
46
- Client for the psync server.
47
-
48
- options:
49
43
  -h, --help show this help message and exit
50
44
  --path, -p PATH Path to the target exectuable.
51
45
  --extra, -E EXTRA [EXTRA ...]
@@ -60,7 +54,7 @@ class PsyncClient:
60
54
  PSYNC_SERVER_PORT: The port of the server instance.
61
55
  Default: 5000
62
56
  PSYNC_SSH_PORT: The server instance's SSH port.
63
- Default: 5001
57
+ Default: 5022
64
58
  PSYNC_SSH_USER: The server instance's SSH user.
65
59
  Default: psync
66
60
  PSYNC_CERT_PATH: Path to the SSL certificate. Used to trust self-signed certs. Should
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cubething_psync
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: Simple project synchronization tool.
5
5
  Author-email: ada mandala <ada@cubething.dev>
6
6
  License-Expression: MIT
File without changes