-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(constants): update URLs and add new service code
- Update `URL_HM` constant to use the correct URL - Add new service code `805` for "COLETIVO - RETRANSMISSÃO DE RÁDIO (RTR) NA AMAZÔNIA LEGAL" fix(paths): update file paths in test cases - Update file paths in `test_certificacao.py` to use `Path` objects instead of hardcoded strings build(deps): update project dependencies - Bump `fiscaliza` version to `1.0.2` - Update `urllib3` to `2.2.2` - Add new dependencies: `certifi`, `charset-normalizer`, `idna`, `packaging` refactor(imports): update imports in test cases - Update imports in `test_fiscaliza.py` to use the correct module path feat(versioning): add version file - Add `__version__` attribute to `src/fiscaliza/__init__.py` refactor(file-structure): move files to `src/fiscaliza` - Move `constants.py`, `datatypes.py`, `attrs.py`, and `main.py` to the `src/fiscaliza` directory
- Loading branch information
1 parent
31597f4
commit 9ccb772
Showing
12 changed files
with
184 additions
and
125 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
[project] | ||
name = "fiscaliza" | ||
version = "1.0.2" | ||
description = "Implementação de API python a instância do Redmine da Anatel: Fiscaliza" | ||
readme = "README.md" | ||
authors = [ | ||
{ name = "Ronaldo S.A. Batista", email = "[email protected]" } | ||
] | ||
requires-python = ">=3.11,<3.12" | ||
dependencies = [ | ||
"certifi==2024.6.2", | ||
"fastcore>=1.5.46", | ||
"python-dotenv>=1.0.1", | ||
"python-redmine==2.4.0", | ||
"unidecode>=1.3.8", | ||
"urllib3==2.2.2", | ||
] | ||
|
||
[project.scripts] | ||
fiscaliza = "fiscaliza:main" | ||
|
||
[build-system] | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
__version__ = "1.0.0" |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.