csc-cia-stne 0.0.19__tar.gz → 0.0.20__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 (23) hide show
  1. {csc_cia_stne-0.0.19 → csc_cia_stne-0.0.20}/PKG-INFO +1 -1
  2. {csc_cia_stne-0.0.19 → csc_cia_stne-0.0.20}/pyproject.toml +1 -1
  3. {csc_cia_stne-0.0.19 → csc_cia_stne-0.0.20}/src/csc_cia_stne/functions.py +29 -29
  4. {csc_cia_stne-0.0.19 → csc_cia_stne-0.0.20}/src/csc_cia_stne.egg-info/PKG-INFO +1 -1
  5. {csc_cia_stne-0.0.19 → csc_cia_stne-0.0.20}/LICENCE +0 -0
  6. {csc_cia_stne-0.0.19 → csc_cia_stne-0.0.20}/README.md +0 -0
  7. {csc_cia_stne-0.0.19 → csc_cia_stne-0.0.20}/README_PYPI.md +0 -0
  8. {csc_cia_stne-0.0.19 → csc_cia_stne-0.0.20}/setup.cfg +0 -0
  9. {csc_cia_stne-0.0.19 → csc_cia_stne-0.0.20}/src/csc_cia_stne/__init__.py +0 -0
  10. {csc_cia_stne-0.0.19 → csc_cia_stne-0.0.20}/src/csc_cia_stne/bc_correios.py +0 -0
  11. {csc_cia_stne-0.0.19 → csc_cia_stne-0.0.20}/src/csc_cia_stne/bc_sta.py +0 -0
  12. {csc_cia_stne-0.0.19 → csc_cia_stne-0.0.20}/src/csc_cia_stne/gcp_bigquery.py +0 -0
  13. {csc_cia_stne-0.0.19 → csc_cia_stne-0.0.20}/src/csc_cia_stne/karavela.py +0 -0
  14. {csc_cia_stne-0.0.19 → csc_cia_stne-0.0.20}/src/csc_cia_stne/logger_json.py +0 -0
  15. {csc_cia_stne-0.0.19 → csc_cia_stne-0.0.20}/src/csc_cia_stne/logger_rich.py +0 -0
  16. {csc_cia_stne-0.0.19 → csc_cia_stne-0.0.20}/src/csc_cia_stne/servicenow.py +0 -0
  17. {csc_cia_stne-0.0.19 → csc_cia_stne-0.0.20}/src/csc_cia_stne/settings.py +0 -0
  18. {csc_cia_stne-0.0.19 → csc_cia_stne-0.0.20}/src/csc_cia_stne/stne_admin.py +0 -0
  19. {csc_cia_stne-0.0.19 → csc_cia_stne-0.0.20}/src/csc_cia_stne/utilitarios.py +0 -0
  20. {csc_cia_stne-0.0.19 → csc_cia_stne-0.0.20}/src/csc_cia_stne.egg-info/SOURCES.txt +0 -0
  21. {csc_cia_stne-0.0.19 → csc_cia_stne-0.0.20}/src/csc_cia_stne.egg-info/dependency_links.txt +0 -0
  22. {csc_cia_stne-0.0.19 → csc_cia_stne-0.0.20}/src/csc_cia_stne.egg-info/requires.txt +0 -0
  23. {csc_cia_stne-0.0.19 → csc_cia_stne-0.0.20}/src/csc_cia_stne.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: csc_cia_stne
3
- Version: 0.0.19
3
+ Version: 0.0.20
4
4
  Summary: Biblioteca do time CSC-CIA utilizada no desenvolvimento de RPAs
5
5
  License: MIT
6
6
  Keywords: karavela,csc,cia,stone,rpa
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "csc_cia_stne"
7
- version = "0.0.19"
7
+ version = "0.0.20"
8
8
  license = { text = "MIT" }
9
9
  description = "Biblioteca do time CSC-CIA utilizada no desenvolvimento de RPAs"
10
10
  keywords = ["karavela", "csc", "cia", "stone", "rpa"]
@@ -78,35 +78,35 @@ def titulo(project_name:str,project_version:str,project_dev_name:str,project_dev
78
78
  raise ValueError(
79
79
  f"As seguintes variáveis obrigatórias estão ausentes no arquivo .env ou nas variáveis de ambiente da máquina, impossibi: {missing_vars_str}"
80
80
  )
81
- else:
82
-
83
- if os.getenv('ambiente_de_execucao') is None or os.getenv('ambiente_de_execucao') != "karavela":
84
-
85
- estilo_box = Style(bold=True)
86
- print(
87
- Panel(
88
- f"""
89
- [bold chartreuse3]CIA [bold white]| [bold chartreuse3]Centro de Inteligência e Automação [bold white]([bold chartreuse3]cia@stone.com.br[bold white])[bold green]\n
90
- Projeto[bold white]: [bold green]{project_name}\n
91
- Versão[bold white]: [bold green]{project_version}\n
92
- Dev[bold white]: [bold green]{project_dev_name} [bold white]([bold green]{project_dev_mail}[bold white])[bold green]\n
93
- Última atualização[bold white]: [bold green]{last_modified()}
94
- """,
95
- title="Stone",
96
- subtitle="CSC-CIA",
97
- style=estilo_box,
98
- border_style="bold chartreuse3"
99
- )
100
- )
101
-
102
- else:
103
-
104
- logging.info("CSC | CIA - Centro de Inteligência e Automação")
105
- logging.info(f"Projeto: {project_name}")
106
- logging.info(f"\tVersão: {project_version} (Última modificação: {last_modified()})")
107
- logging.info("\tTime: CIA <cia@stone.com.br>")
108
- logging.info(f"\tDesenvolvedor: {project_dev_name} <{project_dev_mail}>")
109
- logging.info("-")
81
+
82
+
83
+ if os.getenv('ambiente_de_execucao') is None or os.getenv('ambiente_de_execucao') != "karavela":
84
+
85
+ estilo_box = Style(bold=True)
86
+ print(
87
+ Panel(
88
+ f"""
89
+ [bold chartreuse3]CIA [bold white]| [bold chartreuse3]Centro de Inteligência e Automação [bold white]([bold chartreuse3]cia@stone.com.br[bold white])[bold green]\n
90
+ Projeto[bold white]: [bold green]{project_name}\n
91
+ Versão[bold white]: [bold green]{project_version}\n
92
+ Dev[bold white]: [bold green]{project_dev_name} [bold white]([bold green]{project_dev_mail}[bold white])[bold green]\n
93
+ Última atualização[bold white]: [bold green]{last_modified()}
94
+ """,
95
+ title="Stone",
96
+ subtitle="CSC-CIA",
97
+ style=estilo_box,
98
+ border_style="bold chartreuse3"
99
+ )
100
+ )
101
+
102
+ else:
103
+
104
+ logging.info("CSC | CIA - Centro de Inteligência e Automação")
105
+ logging.info(f"Projeto: {project_name}")
106
+ logging.info(f"\tVersão: {project_version} (Última modificação: {last_modified()})")
107
+ logging.info("\tTime: CIA <cia@stone.com.br>")
108
+ logging.info(f"\tDesenvolvedor: {project_dev_name} <{project_dev_mail}>")
109
+ logging.info("-")
110
110
 
111
111
  def recriar_pasta(caminho_pasta):
112
112
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: csc_cia_stne
3
- Version: 0.0.19
3
+ Version: 0.0.20
4
4
  Summary: Biblioteca do time CSC-CIA utilizada no desenvolvimento de RPAs
5
5
  License: MIT
6
6
  Keywords: karavela,csc,cia,stone,rpa
File without changes
File without changes
File without changes