jira-cli-tool 1.5.0__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.
@@ -0,0 +1,82 @@
1
+ Metadata-Version: 2.4
2
+ Name: jira-cli-tool
3
+ Version: 1.5.0
4
+ Summary: CLI para integração com JIRA - crie, edite e gerencie tarefas pelo terminal
5
+ Author: Luiz Schons
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/luiz-schons/jira-cli-tool
8
+ Project-URL: Repository, https://github.com/luiz-schons/jira-cli-tool
9
+ Keywords: jira,cli,atlassian,task
10
+ Classifier: Development Status :: 4 - Beta
11
+ Classifier: Environment :: Console
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Topic :: Software Development :: Bug Tracking
16
+ Requires-Python: >=3.8
17
+ Description-Content-Type: text/markdown
18
+ Requires-Dist: click>=8.0
19
+ Requires-Dist: requests>=2.28
20
+ Requires-Dist: rich>=13.0
21
+
22
+ # 🔧 JIRA CLI
23
+
24
+ Ferramenta de linha de comando para gerenciar tarefas no JIRA direto pelo terminal, sem precisar abrir o navegador.
25
+
26
+ ## O que faz?
27
+
28
+ - Criar, editar e visualizar tarefas
29
+ - Listar tarefas com filtros (projeto, status, responsável)
30
+ - Mover tarefas entre status (To Do → In Progress → Done)
31
+ - Adicionar comentários
32
+ - Listar projetos disponíveis
33
+
34
+ ## Instalação
35
+
36
+ ### 1. Instalar o pipx
37
+
38
+ ```bash
39
+ brew install pipx
40
+ pipx ensurepath
41
+ ```
42
+
43
+ > ⚠️ Feche e reabra o terminal depois desse passo.
44
+
45
+ ### 2. Instalar o JIRA CLI
46
+
47
+ Peça o arquivo `.whl` para **Luiz Schons** no Slack e rode:
48
+
49
+ ```bash
50
+ pipx install jira_cli_tool-1.1.0-py3-none-any.whl
51
+ ```
52
+
53
+ Pronto! O comando `jira` estará disponível no terminal.
54
+
55
+ ## Atualização
56
+
57
+ Quando uma nova versão for disponibilizada, peça o novo `.whl` e rode:
58
+
59
+ ```bash
60
+ pipx install --force jira_cli_tool-X.X.X-py3-none-any.whl
61
+ ```
62
+
63
+ Para verificar a versão instalada:
64
+
65
+ ```bash
66
+ jira --version
67
+ ```
68
+
69
+ ## Desinstalar
70
+
71
+ ```bash
72
+ pipx uninstall jira-cli-tool
73
+ ```
74
+
75
+ ## Próximos passos
76
+
77
+ - 📄 **[AUTH.md](AUTH.md)** — Como fazer login (passo a passo)
78
+ - 📖 **[DOC.md](DOC.md)** — Referência completa de comandos
79
+
80
+ ## Contato
81
+
82
+ Dúvidas ou precisa do arquivo de instalação? Fale com **Luiz Schons** no Slack.
@@ -0,0 +1,61 @@
1
+ # 🔧 JIRA CLI
2
+
3
+ Ferramenta de linha de comando para gerenciar tarefas no JIRA direto pelo terminal, sem precisar abrir o navegador.
4
+
5
+ ## O que faz?
6
+
7
+ - Criar, editar e visualizar tarefas
8
+ - Listar tarefas com filtros (projeto, status, responsável)
9
+ - Mover tarefas entre status (To Do → In Progress → Done)
10
+ - Adicionar comentários
11
+ - Listar projetos disponíveis
12
+
13
+ ## Instalação
14
+
15
+ ### 1. Instalar o pipx
16
+
17
+ ```bash
18
+ brew install pipx
19
+ pipx ensurepath
20
+ ```
21
+
22
+ > ⚠️ Feche e reabra o terminal depois desse passo.
23
+
24
+ ### 2. Instalar o JIRA CLI
25
+
26
+ Peça o arquivo `.whl` para **Luiz Schons** no Slack e rode:
27
+
28
+ ```bash
29
+ pipx install jira_cli_tool-1.1.0-py3-none-any.whl
30
+ ```
31
+
32
+ Pronto! O comando `jira` estará disponível no terminal.
33
+
34
+ ## Atualização
35
+
36
+ Quando uma nova versão for disponibilizada, peça o novo `.whl` e rode:
37
+
38
+ ```bash
39
+ pipx install --force jira_cli_tool-X.X.X-py3-none-any.whl
40
+ ```
41
+
42
+ Para verificar a versão instalada:
43
+
44
+ ```bash
45
+ jira --version
46
+ ```
47
+
48
+ ## Desinstalar
49
+
50
+ ```bash
51
+ pipx uninstall jira-cli-tool
52
+ ```
53
+
54
+ ## Próximos passos
55
+
56
+ - 📄 **[AUTH.md](AUTH.md)** — Como fazer login (passo a passo)
57
+ - 📖 **[DOC.md](DOC.md)** — Referência completa de comandos
58
+
59
+ ## Contato
60
+
61
+ Dúvidas ou precisa do arquivo de instalação? Fale com **Luiz Schons** no Slack.
@@ -0,0 +1,3 @@
1
+ """JIRA CLI - Ferramenta de linha de comando para integração com JIRA."""
2
+
3
+ __version__ = "1.5.0"