pfolio 0.0.1.dev3__tar.gz → 0.0.1.dev4__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.
- {pfolio-0.0.1.dev3 → pfolio-0.0.1.dev4}/PKG-INFO +2 -2
- {pfolio-0.0.1.dev3 → pfolio-0.0.1.dev4}/pyproject.toml +3 -3
- {pfolio-0.0.1.dev3 → pfolio-0.0.1.dev4}/LICENSE +0 -0
- {pfolio-0.0.1.dev3 → pfolio-0.0.1.dev4}/README.md +0 -0
- {pfolio-0.0.1.dev3 → pfolio-0.0.1.dev4}/pfolio/__init__.py +0 -0
- {pfolio-0.0.1.dev3 → pfolio-0.0.1.dev4}/pfolio/analyses/__init__.py +0 -0
- {pfolio-0.0.1.dev3 → pfolio-0.0.1.dev4}/pfolio/analyses/factor_analysis/__init__.py +0 -0
- {pfolio-0.0.1.dev3 → pfolio-0.0.1.dev4}/pfolio/analyses/scenario_analysis/__init__.py +0 -0
- {pfolio-0.0.1.dev3 → pfolio-0.0.1.dev4}/pfolio/analytics/__init__.py +0 -0
- {pfolio-0.0.1.dev3 → pfolio-0.0.1.dev4}/pfolio/analytics/returns.py +0 -0
- {pfolio-0.0.1.dev3 → pfolio-0.0.1.dev4}/pfolio/analytics/risks.py +0 -0
- {pfolio-0.0.1.dev3 → pfolio-0.0.1.dev4}/pfolio/main.py +0 -0
- {pfolio-0.0.1.dev3 → pfolio-0.0.1.dev4}/pfolio/optimizers/__init__.py +0 -0
- {pfolio-0.0.1.dev3 → pfolio-0.0.1.dev4}/pfolio/statistics/__init__.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pfolio
|
|
3
|
-
Version: 0.0.1.
|
|
3
|
+
Version: 0.0.1.dev4
|
|
4
4
|
Summary: Portfolio Management Library, including analysis, analytics and optimization
|
|
5
5
|
Home-page: https://pfund.ai
|
|
6
6
|
License: Apache-2.0
|
|
@@ -22,7 +22,7 @@ Requires-Dist: arviz (>=0.18.0,<0.19.0) ; extra == "bayesian"
|
|
|
22
22
|
Requires-Dist: cvxpy (>=1.4.2,<2.0.0) ; extra == "portfolio"
|
|
23
23
|
Requires-Dist: empyrial (>=2.1.4,<3.0.0) ; extra == "temporary"
|
|
24
24
|
Requires-Dist: empyrical-reloaded (>=0.5.9,<0.6.0) ; extra == "temporary"
|
|
25
|
-
Requires-Dist: ffn (>=1.0.1,<2.0.0)
|
|
25
|
+
Requires-Dist: ffn (>=1.0.1,<2.0.0) ; extra == "temporary"
|
|
26
26
|
Requires-Dist: financedatabase (>=2.2.2,<3.0.0) ; extra == "data"
|
|
27
27
|
Requires-Dist: financetoolkit (>=1.8.5,<2.0.0) ; extra == "temporary"
|
|
28
28
|
Requires-Dist: finquant (>=0.7.0,<0.8.0) ; extra == "temporary"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "pfolio"
|
|
3
|
-
version = "0.0.1.
|
|
3
|
+
version = "0.0.1.dev4"
|
|
4
4
|
description = "Portfolio Management Library, including analysis, analytics and optimization"
|
|
5
5
|
license = "Apache-2.0"
|
|
6
6
|
authors = ["Stephen Yau <softwareentrepreneer+pfolio@gmail.com>"]
|
|
@@ -26,8 +26,8 @@ cvxpy = { version = "^1.4.2", optional = true }
|
|
|
26
26
|
skfolio = { version = "^0.1.3", optional = true }
|
|
27
27
|
pyportfolioopt = { version = "^1.5.5", optional = true }
|
|
28
28
|
riskfolio-lib = { version = "^6.0.0", optional = true }
|
|
29
|
-
ffn = "^1.0.1"
|
|
30
29
|
quantstats = "^0.0.62"
|
|
30
|
+
ffn = { version = "^1.0.1", optional = true }
|
|
31
31
|
rsome = { version = "^1.2.6", optional = true }
|
|
32
32
|
financetoolkit = { version = "^1.8.5", optional = true }
|
|
33
33
|
thepassiveinvestor = { version = "^1.2.2", optional = true }
|
|
@@ -41,7 +41,7 @@ empyrial = { version = "^2.1.4", optional = true }
|
|
|
41
41
|
data = ['pfeed', 'financedatabase']
|
|
42
42
|
bayesian = ['pymc', 'pyro-ppl', 'arviz']
|
|
43
43
|
portfolio = ['cvxpy', 'skfolio', 'pyportfolioopt' ,'riskfolio-lib']
|
|
44
|
-
temporary = ['empyrial', 'pyfolio-reloaded', 'alphalens-reloaded', 'empyrical-reloaded', 'rsome', 'financetoolkit', 'thepassiveinvestor', 'finquant']
|
|
44
|
+
temporary = ['empyrial', 'pyfolio-reloaded', 'alphalens-reloaded', 'empyrical-reloaded', 'ffn', 'rsome', 'financetoolkit', 'thepassiveinvestor', 'finquant']
|
|
45
45
|
|
|
46
46
|
[tool.poetry.group.dev.dependencies]
|
|
47
47
|
pfund = {path = "../pfund", develop = true}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|