argocli 0.1.0__tar.gz → 0.1.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.
argocli-0.1.1/PKG-INFO ADDED
@@ -0,0 +1,92 @@
1
+ Metadata-Version: 2.4
2
+ Name: argocli
3
+ Version: 0.1.1
4
+ Summary: A command-line interface for Argo Workflows
5
+ Requires-Python: >=3.12
6
+ Description-Content-Type: text/markdown
7
+ License-File: LICENSE
8
+ Requires-Dist: cac-core>=0.4.1
9
+ Requires-Dist: packaging>=25.0
10
+ Requires-Dist: requests>=2.32.4
11
+ Dynamic: license-file
12
+
13
+ # Argo CLI
14
+
15
+ A command-line interface for interacting with Argo.
16
+
17
+ This project uses [UV](https://github.com/astral-sh/uv) for dependency management.
18
+
19
+ ## Installation
20
+
21
+ ```bash
22
+ pip install argocli
23
+ ```
24
+
25
+ ## Authentication
26
+
27
+ On first-run, you'll be prompted for an Argo API token. This will be stored in your system credential store (e.g. Keychain on Mac OS) in an items called `argocli`.
28
+
29
+ ## Configuration
30
+
31
+ On first-run, a configuration file will be generated at `~/.config/argocli/config.yaml`. In this file you'll need to replace the values of `server`, `namespace`, and `username` with appropriate values.
32
+
33
+ ```yaml
34
+ server: https://your-jira-instance.atlassian.net
35
+ namespace: YOUR_PROJECT_NAMESPACE
36
+ username: your.email@example.com
37
+ ```
38
+
39
+ ## Usage
40
+
41
+ The Argo CLI follows a command-action pattern for all operations:
42
+
43
+ ```bash
44
+ argocli <command> <action> [options]
45
+ ```
46
+
47
+ ### Global Options
48
+
49
+ - `--verbose`: Enable debug output
50
+ <!-- - `--output [table|json]`: Control output format (default table) -->
51
+ - `--help`: Show command help
52
+ <!-- --suppress-output: Hide command output -->
53
+ <!-- --version: Display version information -->
54
+
55
+ ### Examples
56
+
57
+ #### Workflow Commands
58
+
59
+ Show the status of a workflow:
60
+
61
+ ```bash
62
+ argocli workflow status -n WORKFLOW_NAME
63
+ ```
64
+
65
+ ## Development
66
+
67
+ ### Setup Development Environment
68
+
69
+ ```bash
70
+ # Install dependencies including dev dependencies
71
+ uv sync
72
+
73
+ # Activate the venv
74
+ source .venv/bin/activate
75
+
76
+ # Run tests
77
+ uv run pytest
78
+ ```
79
+
80
+ Please note that tests are still WIP
81
+
82
+ ### Project Structure
83
+
84
+ - `argocli/commands/` - Command implementations
85
+ - `workflow/` - Workflow-related commands
86
+ - `argocli/cli/` - CLI entry point and argument parsing
87
+
88
+ ### Adding New Commands
89
+
90
+ 1. Create a new action module in the appropriate command directory.
91
+ 2. Define a class that inherits from the command's base class.
92
+ 3. Implement `define_arguments()` and `execute()` methods.
@@ -0,0 +1,80 @@
1
+ # Argo CLI
2
+
3
+ A command-line interface for interacting with Argo.
4
+
5
+ This project uses [UV](https://github.com/astral-sh/uv) for dependency management.
6
+
7
+ ## Installation
8
+
9
+ ```bash
10
+ pip install argocli
11
+ ```
12
+
13
+ ## Authentication
14
+
15
+ On first-run, you'll be prompted for an Argo API token. This will be stored in your system credential store (e.g. Keychain on Mac OS) in an items called `argocli`.
16
+
17
+ ## Configuration
18
+
19
+ On first-run, a configuration file will be generated at `~/.config/argocli/config.yaml`. In this file you'll need to replace the values of `server`, `namespace`, and `username` with appropriate values.
20
+
21
+ ```yaml
22
+ server: https://your-jira-instance.atlassian.net
23
+ namespace: YOUR_PROJECT_NAMESPACE
24
+ username: your.email@example.com
25
+ ```
26
+
27
+ ## Usage
28
+
29
+ The Argo CLI follows a command-action pattern for all operations:
30
+
31
+ ```bash
32
+ argocli <command> <action> [options]
33
+ ```
34
+
35
+ ### Global Options
36
+
37
+ - `--verbose`: Enable debug output
38
+ <!-- - `--output [table|json]`: Control output format (default table) -->
39
+ - `--help`: Show command help
40
+ <!-- --suppress-output: Hide command output -->
41
+ <!-- --version: Display version information -->
42
+
43
+ ### Examples
44
+
45
+ #### Workflow Commands
46
+
47
+ Show the status of a workflow:
48
+
49
+ ```bash
50
+ argocli workflow status -n WORKFLOW_NAME
51
+ ```
52
+
53
+ ## Development
54
+
55
+ ### Setup Development Environment
56
+
57
+ ```bash
58
+ # Install dependencies including dev dependencies
59
+ uv sync
60
+
61
+ # Activate the venv
62
+ source .venv/bin/activate
63
+
64
+ # Run tests
65
+ uv run pytest
66
+ ```
67
+
68
+ Please note that tests are still WIP
69
+
70
+ ### Project Structure
71
+
72
+ - `argocli/commands/` - Command implementations
73
+ - `workflow/` - Workflow-related commands
74
+ - `argocli/cli/` - CLI entry point and argument parsing
75
+
76
+ ### Adding New Commands
77
+
78
+ 1. Create a new action module in the appropriate command directory.
79
+ 2. Define a class that inherits from the command's base class.
80
+ 3. Implement `define_arguments()` and `execute()` methods.
@@ -0,0 +1,92 @@
1
+ Metadata-Version: 2.4
2
+ Name: argocli
3
+ Version: 0.1.1
4
+ Summary: A command-line interface for Argo Workflows
5
+ Requires-Python: >=3.12
6
+ Description-Content-Type: text/markdown
7
+ License-File: LICENSE
8
+ Requires-Dist: cac-core>=0.4.1
9
+ Requires-Dist: packaging>=25.0
10
+ Requires-Dist: requests>=2.32.4
11
+ Dynamic: license-file
12
+
13
+ # Argo CLI
14
+
15
+ A command-line interface for interacting with Argo.
16
+
17
+ This project uses [UV](https://github.com/astral-sh/uv) for dependency management.
18
+
19
+ ## Installation
20
+
21
+ ```bash
22
+ pip install argocli
23
+ ```
24
+
25
+ ## Authentication
26
+
27
+ On first-run, you'll be prompted for an Argo API token. This will be stored in your system credential store (e.g. Keychain on Mac OS) in an items called `argocli`.
28
+
29
+ ## Configuration
30
+
31
+ On first-run, a configuration file will be generated at `~/.config/argocli/config.yaml`. In this file you'll need to replace the values of `server`, `namespace`, and `username` with appropriate values.
32
+
33
+ ```yaml
34
+ server: https://your-jira-instance.atlassian.net
35
+ namespace: YOUR_PROJECT_NAMESPACE
36
+ username: your.email@example.com
37
+ ```
38
+
39
+ ## Usage
40
+
41
+ The Argo CLI follows a command-action pattern for all operations:
42
+
43
+ ```bash
44
+ argocli <command> <action> [options]
45
+ ```
46
+
47
+ ### Global Options
48
+
49
+ - `--verbose`: Enable debug output
50
+ <!-- - `--output [table|json]`: Control output format (default table) -->
51
+ - `--help`: Show command help
52
+ <!-- --suppress-output: Hide command output -->
53
+ <!-- --version: Display version information -->
54
+
55
+ ### Examples
56
+
57
+ #### Workflow Commands
58
+
59
+ Show the status of a workflow:
60
+
61
+ ```bash
62
+ argocli workflow status -n WORKFLOW_NAME
63
+ ```
64
+
65
+ ## Development
66
+
67
+ ### Setup Development Environment
68
+
69
+ ```bash
70
+ # Install dependencies including dev dependencies
71
+ uv sync
72
+
73
+ # Activate the venv
74
+ source .venv/bin/activate
75
+
76
+ # Run tests
77
+ uv run pytest
78
+ ```
79
+
80
+ Please note that tests are still WIP
81
+
82
+ ### Project Structure
83
+
84
+ - `argocli/commands/` - Command implementations
85
+ - `workflow/` - Workflow-related commands
86
+ - `argocli/cli/` - CLI entry point and argument parsing
87
+
88
+ ### Adding New Commands
89
+
90
+ 1. Create a new action module in the appropriate command directory.
91
+ 2. Define a class that inherits from the command's base class.
92
+ 3. Implement `define_arguments()` and `execute()` methods.
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "argocli"
3
- version = "0.1.0"
3
+ version = "0.1.1"
4
4
  description = "A command-line interface for Argo Workflows"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.12"
argocli-0.1.0/PKG-INFO DELETED
@@ -1,11 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: argocli
3
- Version: 0.1.0
4
- Summary: A command-line interface for Argo Workflows
5
- Requires-Python: >=3.12
6
- Description-Content-Type: text/markdown
7
- License-File: LICENSE
8
- Requires-Dist: cac-core>=0.4.1
9
- Requires-Dist: packaging>=25.0
10
- Requires-Dist: requests>=2.32.4
11
- Dynamic: license-file
argocli-0.1.0/README.md DELETED
File without changes
@@ -1,11 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: argocli
3
- Version: 0.1.0
4
- Summary: A command-line interface for Argo Workflows
5
- Requires-Python: >=3.12
6
- Description-Content-Type: text/markdown
7
- License-File: LICENSE
8
- Requires-Dist: cac-core>=0.4.1
9
- Requires-Dist: packaging>=25.0
10
- Requires-Dist: requests>=2.32.4
11
- Dynamic: license-file
File without changes
File without changes
File without changes
File without changes
File without changes