detquantlib 3.10.0__tar.gz → 3.10.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 (21) hide show
  1. {detquantlib-3.10.0 → detquantlib-3.10.2}/PKG-INFO +3 -1
  2. {detquantlib-3.10.0 → detquantlib-3.10.2}/pyproject.toml +6 -4
  3. {detquantlib-3.10.0 → detquantlib-3.10.2}/LICENSE.txt +0 -0
  4. {detquantlib-3.10.0 → detquantlib-3.10.2}/README.md +0 -0
  5. {detquantlib-3.10.0 → detquantlib-3.10.2}/detquantlib/__init__.py +0 -0
  6. {detquantlib-3.10.0 → detquantlib-3.10.2}/detquantlib/data/__init__.py +0 -0
  7. {detquantlib-3.10.0 → detquantlib-3.10.2}/detquantlib/data/databases/detdatabase.py +0 -0
  8. {detquantlib-3.10.0 → detquantlib-3.10.2}/detquantlib/data/entsoe/entsoe.py +0 -0
  9. {detquantlib-3.10.0 → detquantlib-3.10.2}/detquantlib/data/sftp/sftp.py +0 -0
  10. {detquantlib-3.10.0 → detquantlib-3.10.2}/detquantlib/dates/__init__.py +0 -0
  11. {detquantlib-3.10.0 → detquantlib-3.10.2}/detquantlib/dates/dates.py +0 -0
  12. {detquantlib-3.10.0 → detquantlib-3.10.2}/detquantlib/figures/__init__.py +0 -0
  13. {detquantlib-3.10.0 → detquantlib-3.10.2}/detquantlib/figures/plotly_figures.py +0 -0
  14. {detquantlib-3.10.0 → detquantlib-3.10.2}/detquantlib/outputs/__init__.py +0 -0
  15. {detquantlib-3.10.0 → detquantlib-3.10.2}/detquantlib/outputs/outputs_interface.py +0 -0
  16. {detquantlib-3.10.0 → detquantlib-3.10.2}/detquantlib/stats/__init__.py +0 -0
  17. {detquantlib-3.10.0 → detquantlib-3.10.2}/detquantlib/stats/data_analysis.py +0 -0
  18. {detquantlib-3.10.0 → detquantlib-3.10.2}/detquantlib/tradable_products/__init__.py +0 -0
  19. {detquantlib-3.10.0 → detquantlib-3.10.2}/detquantlib/tradable_products/tradable_products.py +0 -0
  20. {detquantlib-3.10.0 → detquantlib-3.10.2}/detquantlib/utils/__init__.py +0 -0
  21. {detquantlib-3.10.0 → detquantlib-3.10.2}/detquantlib/utils/utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: detquantlib
3
- Version: 3.10.0
3
+ Version: 3.10.2
4
4
  Summary: An internal library containing functions and classes that can be used across Quant models.
5
5
  License-File: LICENSE.txt
6
6
  Author: DET
@@ -15,6 +15,8 @@ Requires-Dist: numpy (>=2.2.6,<3.0.0)
15
15
  Requires-Dist: pandas (>=2.3.3,<3.0.0)
16
16
  Requires-Dist: paramiko (>=4.0.0,<5.0.0)
17
17
  Requires-Dist: plotly (>=6.3.1,<7.0.0)
18
+ Requires-Dist: pyarrow (>=21.0.0,<22.0.0)
19
+ Requires-Dist: pyodbc (>=5.2.0,<6.0.0)
18
20
  Requires-Dist: python-dotenv (>=1.1.0,<2.0.0)
19
21
  Requires-Dist: scipy (>=1.15.2,<2.0.0)
20
22
  Requires-Dist: sqlalchemy (>=2.0.43,<3.0.0)
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "detquantlib"
3
- version = "3.10.0"
3
+ version = "3.10.2"
4
4
  description = "An internal library containing functions and classes that can be used across Quant models."
5
5
  authors = ["DET"]
6
6
  readme = "README.md"
@@ -11,13 +11,15 @@ packages = [
11
11
 
12
12
  [tool.poetry.dependencies]
13
13
  python = ">=3.10,<4.0"
14
+ python-dotenv = "^1.1.0"
14
15
  paramiko = "^4.0.0"
16
+ pyodbc = "^5.2.0"
17
+ sqlalchemy = "^2.0.43"
18
+ plotly = "^6.3.1"
15
19
  numpy = "^2.2.6"
16
20
  pandas = "^2.3.3"
17
- plotly = "^6.3.1"
18
- python-dotenv = "^1.1.0"
21
+ pyarrow = "^21.0.0"
19
22
  scipy = "^1.15.2"
20
- sqlalchemy = "^2.0.43"
21
23
 
22
24
  [tool.poetry.group.dev.dependencies]
23
25
  toml = "^0.10.2"
File without changes
File without changes