eco-back 0.2.3__tar.gz → 0.2.4__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 (34) hide show
  1. {eco_back-0.2.3/src/eco_back.egg-info → eco_back-0.2.4}/PKG-INFO +5 -4
  2. {eco_back-0.2.3 → eco_back-0.2.4}/pyproject.toml +5 -4
  3. {eco_back-0.2.3 → eco_back-0.2.4}/src/eco_back/__init__.py +1 -1
  4. {eco_back-0.2.3 → eco_back-0.2.4/src/eco_back.egg-info}/PKG-INFO +5 -4
  5. {eco_back-0.2.3 → eco_back-0.2.4}/LICENSE +0 -0
  6. {eco_back-0.2.3 → eco_back-0.2.4}/MANIFEST.in +0 -0
  7. {eco_back-0.2.3 → eco_back-0.2.4}/README.md +0 -0
  8. {eco_back-0.2.3 → eco_back-0.2.4}/setup.cfg +0 -0
  9. {eco_back-0.2.3 → eco_back-0.2.4}/src/eco_back/api/__init__.py +0 -0
  10. {eco_back-0.2.3 → eco_back-0.2.4}/src/eco_back/api/client.py +0 -0
  11. {eco_back-0.2.3 → eco_back-0.2.4}/src/eco_back/api/config.py +0 -0
  12. {eco_back-0.2.3 → eco_back-0.2.4}/src/eco_back/api/registro.py +0 -0
  13. {eco_back-0.2.3 → eco_back-0.2.4}/src/eco_back/database/__init__.py +0 -0
  14. {eco_back-0.2.3 → eco_back-0.2.4}/src/eco_back/database/config.py +0 -0
  15. {eco_back-0.2.3 → eco_back-0.2.4}/src/eco_back/database/connection.py +0 -0
  16. {eco_back-0.2.3 → eco_back-0.2.4}/src/eco_back/database/models.py +0 -0
  17. {eco_back-0.2.3 → eco_back-0.2.4}/src/eco_back/database/postgis.py +0 -0
  18. {eco_back-0.2.3 → eco_back-0.2.4}/src/eco_back/database/repository.py +0 -0
  19. {eco_back-0.2.3 → eco_back-0.2.4}/src/eco_back/documento/__init__.py +0 -0
  20. {eco_back-0.2.3 → eco_back-0.2.4}/src/eco_back/documento/anexos.py +0 -0
  21. {eco_back-0.2.3 → eco_back-0.2.4}/src/eco_back/registro/__init__.py +0 -0
  22. {eco_back-0.2.3 → eco_back-0.2.4}/src/eco_back/registro/trazabilidad.py +0 -0
  23. {eco_back-0.2.3 → eco_back-0.2.4}/src/eco_back/utils/__init__.py +0 -0
  24. {eco_back-0.2.3 → eco_back-0.2.4}/src/eco_back/utils/exceptions.py +0 -0
  25. {eco_back-0.2.3 → eco_back-0.2.4}/src/eco_back/utils/logger_generico.py +0 -0
  26. {eco_back-0.2.3 → eco_back-0.2.4}/src/eco_back.egg-info/SOURCES.txt +0 -0
  27. {eco_back-0.2.3 → eco_back-0.2.4}/src/eco_back.egg-info/dependency_links.txt +0 -0
  28. {eco_back-0.2.3 → eco_back-0.2.4}/src/eco_back.egg-info/requires.txt +0 -0
  29. {eco_back-0.2.3 → eco_back-0.2.4}/src/eco_back.egg-info/top_level.txt +0 -0
  30. {eco_back-0.2.3 → eco_back-0.2.4}/tests/test_anexos.py +0 -0
  31. {eco_back-0.2.3 → eco_back-0.2.4}/tests/test_api.py +0 -0
  32. {eco_back-0.2.3 → eco_back-0.2.4}/tests/test_database.py +0 -0
  33. {eco_back-0.2.3 → eco_back-0.2.4}/tests/test_example.py +0 -0
  34. {eco_back-0.2.3 → eco_back-0.2.4}/tests/test_postgis.py +0 -0
@@ -1,12 +1,13 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: eco-back
3
- Version: 0.2.3
3
+ Version: 0.2.4
4
4
  Summary: Librería Python eco-back
5
5
  Author-email: EI UNP <ecosistema@unp.gov.co>
6
6
  License: MIT
7
- Project-URL: Homepage, https://github.com/tuusuario/eco-back
8
- Project-URL: Documentation, https://github.com/tuusuario/eco-back
9
- Project-URL: Repository, https://github.com/tuusuario/eco-back
7
+ Project-URL: Homepage, https://github.com/EcosistemaUNP/eco-back
8
+ Project-URL: Documentation, https://github.com/EcosistemaUNP/eco-back
9
+ Project-URL: Repository, https://github.com/EcosistemaUNP/eco-back
10
+ Project-URL: Bug Tracker, https://github.com/EcosistemaUNP/eco-back/issues
10
11
  Classifier: Development Status :: 3 - Alpha
11
12
  Classifier: Intended Audience :: Developers
12
13
  Classifier: License :: OSI Approved :: MIT License
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "eco-back"
7
- version = "0.2.3"
7
+ version = "0.2.4"
8
8
  description = "Librería Python eco-back"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.8"
@@ -46,9 +46,10 @@ geo = [
46
46
  ]
47
47
 
48
48
  [project.urls]
49
- Homepage = "https://github.com/tuusuario/eco-back"
50
- Documentation = "https://github.com/tuusuario/eco-back"
51
- Repository = "https://github.com/tuusuario/eco-back"
49
+ Homepage = "https://github.com/EcosistemaUNP/eco-back"
50
+ Documentation = "https://github.com/EcosistemaUNP/eco-back"
51
+ Repository = "https://github.com/EcosistemaUNP/eco-back"
52
+ "Bug Tracker" = "https://github.com/EcosistemaUNP/eco-back/issues"
52
53
 
53
54
  [tool.setuptools.packages.find]
54
55
  where = ["src"]
@@ -2,7 +2,7 @@
2
2
  eco-back - Librería Python
3
3
  """
4
4
 
5
- __version__ = "0.2.3"
5
+ __version__ = "0.2.4"
6
6
 
7
7
  # Módulos principales
8
8
  from . import database
@@ -1,12 +1,13 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: eco-back
3
- Version: 0.2.3
3
+ Version: 0.2.4
4
4
  Summary: Librería Python eco-back
5
5
  Author-email: EI UNP <ecosistema@unp.gov.co>
6
6
  License: MIT
7
- Project-URL: Homepage, https://github.com/tuusuario/eco-back
8
- Project-URL: Documentation, https://github.com/tuusuario/eco-back
9
- Project-URL: Repository, https://github.com/tuusuario/eco-back
7
+ Project-URL: Homepage, https://github.com/EcosistemaUNP/eco-back
8
+ Project-URL: Documentation, https://github.com/EcosistemaUNP/eco-back
9
+ Project-URL: Repository, https://github.com/EcosistemaUNP/eco-back
10
+ Project-URL: Bug Tracker, https://github.com/EcosistemaUNP/eco-back/issues
10
11
  Classifier: Development Status :: 3 - Alpha
11
12
  Classifier: Intended Audience :: Developers
12
13
  Classifier: License :: OSI Approved :: MIT License
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes