openseries 2.0.2__tar.gz → 2.1.0__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.
- {openseries-2.0.2 → openseries-2.1.0}/PKG-INFO +15 -43
- {openseries-2.0.2 → openseries-2.1.0}/openseries/__init__.py +3 -4
- {openseries-2.0.2 → openseries-2.1.0}/openseries/_common_model.py +511 -785
- {openseries-2.0.2 → openseries-2.1.0}/openseries/_risk.py +15 -26
- {openseries-2.0.2 → openseries-2.1.0}/openseries/datefixer.py +73 -120
- {openseries-2.0.2 → openseries-2.1.0}/openseries/frame.py +796 -766
- {openseries-2.0.2 → openseries-2.1.0}/openseries/load_plotly.py +9 -16
- {openseries-2.0.2 → openseries-2.1.0}/openseries/owntypes.py +10 -8
- openseries-2.1.0/openseries/portfoliotools.py +871 -0
- openseries-2.1.0/openseries/report.py +1165 -0
- {openseries-2.0.2 → openseries-2.1.0}/openseries/series.py +180 -253
- {openseries-2.0.2 → openseries-2.1.0}/openseries/simulation.py +82 -170
- {openseries-2.0.2 → openseries-2.1.0}/pyproject.toml +43 -54
- openseries-2.0.2/openseries/portfoliotools.py +0 -610
- openseries-2.0.2/openseries/report.py +0 -480
- {openseries-2.0.2 → openseries-2.1.0}/LICENSE.md +0 -0
- {openseries-2.0.2 → openseries-2.1.0}/README.md +0 -0
- {openseries-2.0.2 → openseries-2.1.0}/openseries/plotly_captor_logo.json +0 -0
- {openseries-2.0.2 → openseries-2.1.0}/openseries/plotly_layouts.json +0 -0
- {openseries-2.0.2 → openseries-2.1.0}/openseries/py.typed +0 -0
|
@@ -1,66 +1,38 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: openseries
|
|
3
|
-
Version: 2.0
|
|
3
|
+
Version: 2.1.0
|
|
4
4
|
Summary: Tools for analyzing financial timeseries.
|
|
5
|
-
License:
|
|
6
|
-
|
|
7
|
-
## Copyright (c) Captor Fund Management AB
|
|
8
|
-
|
|
9
|
-
Redistribution and use in source and binary forms, with or without modification, are
|
|
10
|
-
permitted provided that the following conditions are met:
|
|
11
|
-
|
|
12
|
-
1. Redistributions of source code must retain the above copyright notice, this list of
|
|
13
|
-
conditions and the following disclaimer.
|
|
14
|
-
|
|
15
|
-
2. Redistributions in binary form must reproduce the above copyright notice, this list
|
|
16
|
-
of conditions and the following disclaimer in the documentation and/or other
|
|
17
|
-
materials provided with the distribution.
|
|
18
|
-
|
|
19
|
-
3. Neither the name of the copyright holder nor the names of its contributors may be
|
|
20
|
-
used to endorse or promote products derived from this software without specific prior
|
|
21
|
-
written permission.
|
|
22
|
-
|
|
23
|
-
This software is provided by the copyright holders and contributors “as is” and any
|
|
24
|
-
express or implied warranties, including, but not limited to, the implied warranties of
|
|
25
|
-
merchantability and fitness for a particular purpose, are disclaimed. In no event shall
|
|
26
|
-
the copyright holder or contributors be liable for any direct, indirect, incidental,
|
|
27
|
-
special, exemplary, or consequential damages (including, but not limited to, procurement
|
|
28
|
-
of substitute goods or services; loss of use, data, or profits; or business interruption)
|
|
29
|
-
however caused and on any theory of liability, whether in contract, strict liability,
|
|
30
|
-
or tort (including negligence or otherwise) arising in any way out of the use of this
|
|
31
|
-
software, even if advised of the possibility of such damage.
|
|
5
|
+
License-Expression: BSD-3-Clause
|
|
32
6
|
License-File: LICENSE.md
|
|
33
7
|
Keywords: python,finance,fintech,data-science,timeseries,timeseries-data,timeseries-analysis,investment,investment-analysis,investing
|
|
34
8
|
Author: Martin Karrin
|
|
35
9
|
Author-email: martin.karrin@captor.se
|
|
36
10
|
Maintainer: Martin Karrin
|
|
37
11
|
Maintainer-email: martin.karrin@captor.se
|
|
38
|
-
Requires-Python: >=3.
|
|
39
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
12
|
+
Requires-Python: >=3.11,<3.15
|
|
40
13
|
Classifier: Programming Language :: Python :: 3.11
|
|
41
14
|
Classifier: Programming Language :: Python :: 3.12
|
|
42
15
|
Classifier: Programming Language :: Python :: 3.13
|
|
43
16
|
Classifier: Programming Language :: Python :: 3.14
|
|
44
|
-
Classifier: License :: OSI Approved :: BSD License
|
|
45
17
|
Classifier: Intended Audience :: Financial and Insurance Industry
|
|
46
18
|
Classifier: Topic :: Office/Business :: Financial :: Investment
|
|
47
19
|
Classifier: Natural Language :: English
|
|
48
20
|
Classifier: Development Status :: 5 - Production/Stable
|
|
49
21
|
Classifier: Operating System :: OS Independent
|
|
50
22
|
Classifier: Framework :: Pydantic
|
|
51
|
-
Requires-Dist: exchange-calendars (>=4.8
|
|
52
|
-
Requires-Dist: holidays (>=0.30
|
|
53
|
-
Requires-Dist: numpy (>=1.23.2
|
|
54
|
-
Requires-Dist: openpyxl (>=3.1.2
|
|
55
|
-
Requires-Dist: pandas (>=2.1.2
|
|
56
|
-
Requires-Dist: plotly (>=5.18.0
|
|
57
|
-
Requires-Dist: pydantic (>=2.5.2
|
|
58
|
-
Requires-Dist: python-dateutil (>=2.8.2
|
|
59
|
-
Requires-Dist: requests (>=2.20.0
|
|
60
|
-
Requires-Dist: scikit-learn (>=1.4.0
|
|
61
|
-
Requires-Dist: scipy (>=1.
|
|
23
|
+
Requires-Dist: exchange-calendars (>=4.8)
|
|
24
|
+
Requires-Dist: holidays (>=0.30)
|
|
25
|
+
Requires-Dist: numpy (>=1.23.2)
|
|
26
|
+
Requires-Dist: openpyxl (>=3.1.2)
|
|
27
|
+
Requires-Dist: pandas (>=2.1.2)
|
|
28
|
+
Requires-Dist: plotly (>=5.18.0)
|
|
29
|
+
Requires-Dist: pydantic (>=2.5.2)
|
|
30
|
+
Requires-Dist: python-dateutil (>=2.8.2)
|
|
31
|
+
Requires-Dist: requests (>=2.20.0)
|
|
32
|
+
Requires-Dist: scikit-learn (>=1.4.0)
|
|
33
|
+
Requires-Dist: scipy (>=1.14.1)
|
|
62
34
|
Project-URL: Documentation, https://openseries.readthedocs.io/
|
|
63
|
-
Project-URL: Homepage, https://github.
|
|
35
|
+
Project-URL: Homepage, https://captorab.github.io/openseries/
|
|
64
36
|
Project-URL: Issue Tracker, https://github.com/CaptorAB/openseries/issues
|
|
65
37
|
Project-URL: Release Notes, https://github.com/CaptorAB/openseries/releases
|
|
66
38
|
Project-URL: Source, https://github.com/CaptorAB/openseries
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
"""openseries.
|
|
1
|
+
"""openseries package initialization."""
|
|
2
2
|
|
|
3
|
-
__version__ = "2.0
|
|
3
|
+
__version__ = "2.1.0"
|
|
4
4
|
|
|
5
5
|
from .datefixer import (
|
|
6
6
|
date_fix,
|
|
@@ -12,7 +12,7 @@ from .datefixer import (
|
|
|
12
12
|
)
|
|
13
13
|
from .frame import OpenFrame
|
|
14
14
|
from .load_plotly import load_plotly_dict
|
|
15
|
-
from .owntypes import
|
|
15
|
+
from .owntypes import ValueType
|
|
16
16
|
from .portfoliotools import (
|
|
17
17
|
constrain_optimized_portfolios,
|
|
18
18
|
efficient_frontier,
|
|
@@ -28,7 +28,6 @@ __all__ = [
|
|
|
28
28
|
"OpenFrame",
|
|
29
29
|
"OpenTimeSeries",
|
|
30
30
|
"ReturnSimulation",
|
|
31
|
-
"Self",
|
|
32
31
|
"ValueType",
|
|
33
32
|
"constrain_optimized_portfolios",
|
|
34
33
|
"date_fix",
|