csc-cia-stne 0.0.21__tar.gz → 0.0.22__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.
- {csc_cia_stne-0.0.21 → csc_cia_stne-0.0.22}/PKG-INFO +1 -1
- {csc_cia_stne-0.0.21 → csc_cia_stne-0.0.22}/pyproject.toml +1 -1
- {csc_cia_stne-0.0.21 → csc_cia_stne-0.0.22}/src/csc_cia_stne/__init__.py +12 -1
- {csc_cia_stne-0.0.21 → csc_cia_stne-0.0.22}/src/csc_cia_stne.egg-info/PKG-INFO +1 -1
- {csc_cia_stne-0.0.21 → csc_cia_stne-0.0.22}/LICENCE +0 -0
- {csc_cia_stne-0.0.21 → csc_cia_stne-0.0.22}/README.md +0 -0
- {csc_cia_stne-0.0.21 → csc_cia_stne-0.0.22}/README_PYPI.md +0 -0
- {csc_cia_stne-0.0.21 → csc_cia_stne-0.0.22}/setup.cfg +0 -0
- {csc_cia_stne-0.0.21 → csc_cia_stne-0.0.22}/src/csc_cia_stne/bc_correios.py +0 -0
- {csc_cia_stne-0.0.21 → csc_cia_stne-0.0.22}/src/csc_cia_stne/bc_sta.py +0 -0
- {csc_cia_stne-0.0.21 → csc_cia_stne-0.0.22}/src/csc_cia_stne/functions.py +0 -0
- {csc_cia_stne-0.0.21 → csc_cia_stne-0.0.22}/src/csc_cia_stne/gcp_bigquery.py +0 -0
- {csc_cia_stne-0.0.21 → csc_cia_stne-0.0.22}/src/csc_cia_stne/karavela.py +0 -0
- {csc_cia_stne-0.0.21 → csc_cia_stne-0.0.22}/src/csc_cia_stne/logger_json.py +0 -0
- {csc_cia_stne-0.0.21 → csc_cia_stne-0.0.22}/src/csc_cia_stne/logger_rich.py +0 -0
- {csc_cia_stne-0.0.21 → csc_cia_stne-0.0.22}/src/csc_cia_stne/servicenow.py +0 -0
- {csc_cia_stne-0.0.21 → csc_cia_stne-0.0.22}/src/csc_cia_stne/stne_admin.py +0 -0
- {csc_cia_stne-0.0.21 → csc_cia_stne-0.0.22}/src/csc_cia_stne/utilitarios.py +0 -0
- {csc_cia_stne-0.0.21 → csc_cia_stne-0.0.22}/src/csc_cia_stne.egg-info/SOURCES.txt +0 -0
- {csc_cia_stne-0.0.21 → csc_cia_stne-0.0.22}/src/csc_cia_stne.egg-info/dependency_links.txt +0 -0
- {csc_cia_stne-0.0.21 → csc_cia_stne-0.0.22}/src/csc_cia_stne.egg-info/requires.txt +0 -0
- {csc_cia_stne-0.0.21 → csc_cia_stne-0.0.22}/src/csc_cia_stne.egg-info/top_level.txt +0 -0
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "csc_cia_stne"
|
7
|
-
version = "0.0.
|
7
|
+
version = "0.0.22"
|
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"]
|
@@ -15,4 +15,15 @@ from .stne_admin import StoneAdmin
|
|
15
15
|
from .bc_sta import BC_STA
|
16
16
|
from .bc_correios import BC_Correios
|
17
17
|
from .gcp_bigquery import BigQuery
|
18
|
-
from .functions import titulo
|
18
|
+
from .functions import titulo
|
19
|
+
# Define os itens disponíveis para importação
|
20
|
+
__all__ = [
|
21
|
+
"titulo",
|
22
|
+
"BigQuery",
|
23
|
+
"BC_Correios",
|
24
|
+
"BC_STA",
|
25
|
+
"StoneAdmin",
|
26
|
+
"ServiceNow",
|
27
|
+
"Util",
|
28
|
+
"logger"
|
29
|
+
]
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|