cardo-python-utils 0.3.0__tar.gz → 0.3.2__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 (25) hide show
  1. {cardo-python-utils-0.3.0/cardo_python_utils.egg-info → cardo_python_utils-0.3.2}/PKG-INFO +12 -2
  2. {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2/cardo_python_utils.egg-info}/PKG-INFO +12 -2
  3. {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/python_utils/esma_choices.py +1 -0
  4. {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/setup.cfg +1 -1
  5. {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/LICENSE +0 -0
  6. {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/MANIFEST.in +0 -0
  7. {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/README.rst +0 -0
  8. {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/cardo_python_utils.egg-info/SOURCES.txt +0 -0
  9. {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/cardo_python_utils.egg-info/dependency_links.txt +0 -0
  10. {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/cardo_python_utils.egg-info/requires.txt +0 -0
  11. {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/cardo_python_utils.egg-info/top_level.txt +0 -0
  12. {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/python_utils/__init__.py +0 -0
  13. {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/python_utils/choices.py +0 -0
  14. {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/python_utils/data_structures.py +0 -0
  15. {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/python_utils/db.py +0 -0
  16. {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/python_utils/django_utils.py +0 -0
  17. {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/python_utils/exceptions.py +0 -0
  18. {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/python_utils/imports.py +0 -0
  19. {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/python_utils/math.py +0 -0
  20. {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/python_utils/pandas_utils.py +0 -0
  21. {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/python_utils/rest.py +0 -0
  22. {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/python_utils/text.py +0 -0
  23. {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/python_utils/time.py +0 -0
  24. {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/python_utils/types_hinting.py +0 -0
  25. {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cardo-python-utils
3
- Version: 0.3.0
3
+ Version: 0.3.2
4
4
  Summary: Python library enhanced with a wide range of functions for different scenarios.
5
5
  Home-page: https://github.com/CardoAI/cardo-python-utils
6
6
  Author: Kristi Kotini
@@ -20,11 +20,21 @@ Classifier: Programming Language :: Python :: 3.10
20
20
  Classifier: Topic :: Internet :: WWW/HTTP
21
21
  Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
22
22
  Requires-Python: >=3.8
23
+ License-File: LICENSE
23
24
  Provides-Extra: pandas
25
+ Requires-Dist: pandas>=1.4.0; extra == "pandas"
24
26
  Provides-Extra: django
27
+ Requires-Dist: Django; extra == "django"
28
+ Requires-Dist: django-model-utils==4.2.0; extra == "django"
25
29
  Provides-Extra: rest
30
+ Requires-Dist: djangorestframework; extra == "rest"
31
+ Requires-Dist: requests; extra == "rest"
26
32
  Provides-Extra: all
27
- License-File: LICENSE
33
+ Requires-Dist: Django; extra == "all"
34
+ Requires-Dist: pandas>=1.4.0; extra == "all"
35
+ Requires-Dist: django-model-utils>=4.2.0; extra == "all"
36
+ Requires-Dist: djangorestframework; extra == "all"
37
+ Requires-Dist: requests; extra == "all"
28
38
 
29
39
  ============================
30
40
  CardoAI Python Helper Module
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cardo-python-utils
3
- Version: 0.3.0
3
+ Version: 0.3.2
4
4
  Summary: Python library enhanced with a wide range of functions for different scenarios.
5
5
  Home-page: https://github.com/CardoAI/cardo-python-utils
6
6
  Author: Kristi Kotini
@@ -20,11 +20,21 @@ Classifier: Programming Language :: Python :: 3.10
20
20
  Classifier: Topic :: Internet :: WWW/HTTP
21
21
  Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
22
22
  Requires-Python: >=3.8
23
+ License-File: LICENSE
23
24
  Provides-Extra: pandas
25
+ Requires-Dist: pandas>=1.4.0; extra == "pandas"
24
26
  Provides-Extra: django
27
+ Requires-Dist: Django; extra == "django"
28
+ Requires-Dist: django-model-utils==4.2.0; extra == "django"
25
29
  Provides-Extra: rest
30
+ Requires-Dist: djangorestframework; extra == "rest"
31
+ Requires-Dist: requests; extra == "rest"
26
32
  Provides-Extra: all
27
- License-File: LICENSE
33
+ Requires-Dist: Django; extra == "all"
34
+ Requires-Dist: pandas>=1.4.0; extra == "all"
35
+ Requires-Dist: django-model-utils>=4.2.0; extra == "all"
36
+ Requires-Dist: djangorestframework; extra == "all"
37
+ Requires-Dist: requests; extra == "all"
28
38
 
29
39
  ============================
30
40
  CardoAI Python Helper Module
@@ -261,6 +261,7 @@ class InterestRateIndexChoices(ChoiceEnum):
261
261
  LDOR = 29, "Lender's Own Rate"
262
262
  OTHR = 30, "Other"
263
263
  SOFR = 31, "SOFR"
264
+ SONIA = 32, "SONIA"
264
265
 
265
266
 
266
267
  class InterestRateIndexTenorChoices(ChoiceEnum):
@@ -1,6 +1,6 @@
1
1
  [metadata]
2
2
  name = cardo-python-utils
3
- version = 0.3.0
3
+ version = 0.3.2
4
4
  description = Python library enhanced with a wide range of functions for different scenarios.
5
5
  long_description = file: README.rst
6
6
  url = https://github.com/CardoAI/cardo-python-utils