fluxqueue-cli 0.1.0b2__tar.gz → 0.1.0b4__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.
- {fluxqueue_cli-0.1.0b2 → fluxqueue_cli-0.1.0b4}/PKG-INFO +4 -4
- {fluxqueue_cli-0.1.0b2 → fluxqueue_cli-0.1.0b4}/README.md +1 -1
- {fluxqueue_cli-0.1.0b2 → fluxqueue_cli-0.1.0b4}/pyproject.toml +3 -3
- fluxqueue_cli-0.1.0b4/src/fluxqueue_cli/__init__.py +1 -0
- fluxqueue_cli-0.1.0b2/src/fluxqueue_cli/__init__.py +0 -1
- {fluxqueue_cli-0.1.0b2 → fluxqueue_cli-0.1.0b4}/LICENSE +0 -0
- {fluxqueue_cli-0.1.0b2 → fluxqueue_cli-0.1.0b4}/src/fluxqueue_cli/cli.py +0 -0
- {fluxqueue_cli-0.1.0b2 → fluxqueue_cli-0.1.0b4}/src/fluxqueue_cli/exceptions.py +0 -0
- {fluxqueue_cli-0.1.0b2 → fluxqueue_cli-0.1.0b4}/src/fluxqueue_cli/worker.py +0 -0
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: fluxqueue-cli
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.0b4
|
|
4
4
|
Summary: A command-line tool for installing and running FluxQueue workers
|
|
5
5
|
Author-Email: Giorgi Merebashvili <mereba2627@gmail.com>
|
|
6
|
-
License-Expression: Apache
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
7
|
License-File: LICENSE
|
|
8
|
-
Requires-Python: <3.
|
|
8
|
+
Requires-Python: <3.15,>=3.11
|
|
9
9
|
Requires-Dist: typer>=0.17.0
|
|
10
10
|
Requires-Dist: requests>=2.29.0
|
|
11
11
|
Provides-Extra: dev
|
|
@@ -37,7 +37,7 @@ fluxqueue worker install
|
|
|
37
37
|
To start a worker, provide the path to the module where your tasks are defined and exported:
|
|
38
38
|
|
|
39
39
|
```bash
|
|
40
|
-
fluxqueue start --tasks-module-path src
|
|
40
|
+
fluxqueue start --tasks-module-path src/tasks
|
|
41
41
|
```
|
|
42
42
|
|
|
43
43
|
## Documentation
|
|
@@ -21,7 +21,7 @@ fluxqueue worker install
|
|
|
21
21
|
To start a worker, provide the path to the module where your tasks are defined and exported:
|
|
22
22
|
|
|
23
23
|
```bash
|
|
24
|
-
fluxqueue start --tasks-module-path src
|
|
24
|
+
fluxqueue start --tasks-module-path src/tasks
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
## Documentation
|
|
@@ -9,8 +9,8 @@ name = "fluxqueue-cli"
|
|
|
9
9
|
dynamic = []
|
|
10
10
|
description = "A command-line tool for installing and running FluxQueue workers"
|
|
11
11
|
readme = "README.md"
|
|
12
|
-
requires-python = ">=3.11,<3.
|
|
13
|
-
license = "Apache"
|
|
12
|
+
requires-python = ">=3.11,<3.15"
|
|
13
|
+
license = "Apache-2.0"
|
|
14
14
|
license-files = [
|
|
15
15
|
"LICENSE",
|
|
16
16
|
]
|
|
@@ -21,7 +21,7 @@ dependencies = [
|
|
|
21
21
|
"typer>=0.17.0",
|
|
22
22
|
"requests>=2.29.0",
|
|
23
23
|
]
|
|
24
|
-
version = "0.1.
|
|
24
|
+
version = "0.1.0b4"
|
|
25
25
|
|
|
26
26
|
[project.scripts]
|
|
27
27
|
fluxqueue = "fluxqueue_cli.cli:app"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.1.0b4"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.1.0b2"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|