pfolio 0.0.1.dev1__tar.gz → 0.0.1.dev3__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.
@@ -0,0 +1,59 @@
1
+ Metadata-Version: 2.1
2
+ Name: pfolio
3
+ Version: 0.0.1.dev3
4
+ Summary: Portfolio Management Library, including analysis, analytics and optimization
5
+ Home-page: https://pfund.ai
6
+ License: Apache-2.0
7
+ Keywords: portfolio management,investment,analytics,fundamental analysis
8
+ Author: Stephen Yau
9
+ Author-email: softwareentrepreneer+pfolio@gmail.com
10
+ Requires-Python: >=3.10,<3.13
11
+ Classifier: License :: OSI Approved :: Apache Software License
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.10
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Provides-Extra: bayesian
17
+ Provides-Extra: data
18
+ Provides-Extra: portfolio
19
+ Provides-Extra: temporary
20
+ Requires-Dist: alphalens-reloaded (>=0.4.3,<0.5.0) ; extra == "temporary"
21
+ Requires-Dist: arviz (>=0.18.0,<0.19.0) ; extra == "bayesian"
22
+ Requires-Dist: cvxpy (>=1.4.2,<2.0.0) ; extra == "portfolio"
23
+ Requires-Dist: empyrial (>=2.1.4,<3.0.0) ; extra == "temporary"
24
+ Requires-Dist: empyrical-reloaded (>=0.5.9,<0.6.0) ; extra == "temporary"
25
+ Requires-Dist: ffn (>=1.0.1,<2.0.0)
26
+ Requires-Dist: financedatabase (>=2.2.2,<3.0.0) ; extra == "data"
27
+ Requires-Dist: financetoolkit (>=1.8.5,<2.0.0) ; extra == "temporary"
28
+ Requires-Dist: finquant (>=0.7.0,<0.8.0) ; extra == "temporary"
29
+ Requires-Dist: pfeed[boost,data,df] (>=0.0.1.dev10,<0.0.2) ; extra == "data"
30
+ Requires-Dist: pfund (>=0.0.1.dev10,<0.0.2)
31
+ Requires-Dist: plotly (>=5.20.0,<6.0.0)
32
+ Requires-Dist: pyfolio-reloaded (>=0.9.5,<0.10.0) ; extra == "temporary"
33
+ Requires-Dist: pymc (>=5.12.0,<6.0.0) ; extra == "bayesian"
34
+ Requires-Dist: pyportfolioopt (>=1.5.5,<2.0.0) ; extra == "portfolio"
35
+ Requires-Dist: pyro-ppl (>=1.9.0,<2.0.0) ; extra == "bayesian"
36
+ Requires-Dist: quantstats (>=0.0.62,<0.0.63)
37
+ Requires-Dist: riskfolio-lib (>=6.0.0,<7.0.0) ; extra == "portfolio"
38
+ Requires-Dist: rsome (>=1.2.6,<2.0.0) ; extra == "temporary"
39
+ Requires-Dist: scikit-learn (>=1.3.1,<2.0.0)
40
+ Requires-Dist: seaborn (>=0.13.2,<0.14.0)
41
+ Requires-Dist: skfolio (>=0.1.3,<0.2.0) ; extra == "portfolio"
42
+ Requires-Dist: statsmodels (>=0.14.0,<0.15.0)
43
+ Requires-Dist: thepassiveinvestor (>=1.2.2,<2.0.0) ; extra == "temporary"
44
+ Project-URL: Documentation, https://pfolio-docs.pfund.ai
45
+ Project-URL: Repository, https://github.com/PFund-Software-Ltd/pfolio
46
+ Description-Content-Type: text/markdown
47
+
48
+ # pfolio
49
+
50
+ > **still designing, NOT WORKING YET**
51
+
52
+ It is a wrapper of the existing portfolio management packages, eventually it will be a true package on its own.
53
+
54
+
55
+ > Ultimate Goal: It will be the backend of an open-source version of a portfolio analysis tool, like Two Sigma's Venn, or Bloomberg's PORT.
56
+
57
+ Refereces: \
58
+ [Portfolio Visualizer](https://www.portfoliovisualizer.com) \
59
+ [Portfolio Performance](https://www.portfolio-performance.info/en/)
@@ -1,5 +1,7 @@
1
1
  # pfolio
2
2
 
3
+ > **still designing, NOT WORKING YET**
4
+
3
5
  It is a wrapper of the existing portfolio management packages, eventually it will be a true package on its own.
4
6
 
5
7
 
@@ -0,0 +1,9 @@
1
+ from importlib.metadata import version
2
+
3
+
4
+ __version__ = version('pfolio')
5
+
6
+
7
+ __all__ = (
8
+ '__version__',
9
+ )
File without changes
File without changes
File without changes
@@ -0,0 +1,6 @@
1
+ import pfolio as po
2
+ import pfolio.analytics as pa
3
+
4
+
5
+ if __name__ == '__main__':
6
+ pass
File without changes
File without changes
@@ -0,0 +1,55 @@
1
+ [tool.poetry]
2
+ name = "pfolio"
3
+ version = "0.0.1.dev3"
4
+ description = "Portfolio Management Library, including analysis, analytics and optimization"
5
+ license = "Apache-2.0"
6
+ authors = ["Stephen Yau <softwareentrepreneer+pfolio@gmail.com>"]
7
+ readme = "README.md"
8
+ homepage = "https://pfund.ai"
9
+ repository = "https://github.com/PFund-Software-Ltd/pfolio"
10
+ documentation = "https://pfolio-docs.pfund.ai"
11
+ keywords = ["portfolio management", "investment", "analytics", "fundamental analysis"]
12
+
13
+ [tool.poetry.dependencies]
14
+ python = ">=3.10 <3.13"
15
+ pfund = "^0.0.1.dev10"
16
+ statsmodels = "^0.14.0"
17
+ scikit-learn = "^1.3.1"
18
+ plotly = "^5.20.0"
19
+ seaborn = "^0.13.2"
20
+ pfeed = { version = "^0.0.1.dev10", optional = true, extras = ["df", "data", "boost"] }
21
+ financedatabase = { version = "^2.2.2", optional = true }
22
+ pymc = { version = "^5.12.0", optional = true }
23
+ pyro-ppl = { version = "^1.9.0", optional = true }
24
+ arviz = { version = "^0.18.0", optional = true }
25
+ cvxpy = { version = "^1.4.2", optional = true }
26
+ skfolio = { version = "^0.1.3", optional = true }
27
+ pyportfolioopt = { version = "^1.5.5", optional = true }
28
+ riskfolio-lib = { version = "^6.0.0", optional = true }
29
+ ffn = "^1.0.1"
30
+ quantstats = "^0.0.62"
31
+ rsome = { version = "^1.2.6", optional = true }
32
+ financetoolkit = { version = "^1.8.5", optional = true }
33
+ thepassiveinvestor = { version = "^1.2.2", optional = true }
34
+ finquant = { version = "^0.7.0", optional = true }
35
+ pyfolio-reloaded = { version = "^0.9.5", optional = true }
36
+ alphalens-reloaded = { version = "^0.4.3", optional = true }
37
+ empyrical-reloaded = { version = "^0.5.9", optional = true }
38
+ empyrial = { version = "^2.1.4", optional = true }
39
+
40
+ [tool.poetry.extras]
41
+ data = ['pfeed', 'financedatabase']
42
+ bayesian = ['pymc', 'pyro-ppl', 'arviz']
43
+ portfolio = ['cvxpy', 'skfolio', 'pyportfolioopt' ,'riskfolio-lib']
44
+ temporary = ['empyrial', 'pyfolio-reloaded', 'alphalens-reloaded', 'empyrical-reloaded', 'rsome', 'financetoolkit', 'thepassiveinvestor', 'finquant']
45
+
46
+ [tool.poetry.group.dev.dependencies]
47
+ pfund = {path = "../pfund", develop = true}
48
+ pfeed = {path = "../pfeed", develop = true}
49
+
50
+ [tool.poetry.group.doc.dependencies]
51
+ jupyter-book = "^1.0.0"
52
+
53
+ [build-system]
54
+ requires = ["poetry-core"]
55
+ build-backend = "poetry.core.masonry.api"
@@ -1,37 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: pfolio
3
- Version: 0.0.1.dev1
4
- Summary:
5
- Home-page: https://pfund.ai
6
- License: Apache-2.0
7
- Keywords: portfolio management,investment,analytics,analysis
8
- Author: Stephen Yau
9
- Author-email: softwareentrepreneer+pfolio@gmail.com
10
- Requires-Python: >=3.10,<3.12
11
- Classifier: License :: OSI Approved :: Apache Software License
12
- Classifier: Programming Language :: Python :: 3
13
- Classifier: Programming Language :: Python :: 3.10
14
- Classifier: Programming Language :: Python :: 3.11
15
- Requires-Dist: alphalens-reloaded (>=0.4.3,<0.5.0)
16
- Requires-Dist: empyrial (>=2.1.4,<3.0.0)
17
- Requires-Dist: empyrical-reloaded (>=0.5.9,<0.6.0)
18
- Requires-Dist: ffn (>=1.0.1,<2.0.0)
19
- Requires-Dist: pfeed (>=0.0.1.dev6,<0.0.2)
20
- Requires-Dist: pyfolio-reloaded (>=0.9.5,<0.10.0)
21
- Requires-Dist: pyportfolioopt (>=1.5.5,<2.0.0)
22
- Requires-Dist: quantstats (>=0.0.62,<0.0.63)
23
- Requires-Dist: riskfolio-lib (>=6.0.0,<7.0.0)
24
- Project-URL: Documentation, https://pfolio-docs.pfund.ai
25
- Project-URL: Repository, https://github.com/PFund-Software-Ltd/pfolio
26
- Description-Content-Type: text/markdown
27
-
28
- # pfolio
29
-
30
- It is a wrapper of the existing portfolio management packages, eventually it will be a true package on its own.
31
-
32
-
33
- > Ultimate Goal: It will be the backend of an open-source version of a portfolio analysis tool, like Two Sigma's Venn, or Bloomberg's PORT.
34
-
35
- Refereces: \
36
- [Portfolio Visualizer](https://www.portfoliovisualizer.com) \
37
- [Portfolio Performance](https://www.portfolio-performance.info/en/)
@@ -1,33 +0,0 @@
1
- [tool.poetry]
2
- name = "pfolio"
3
- version = "0.0.1.dev1"
4
- description = ""
5
- license = "Apache-2.0"
6
- authors = ["Stephen Yau <softwareentrepreneer+pfolio@gmail.com>"]
7
- readme = "README.md"
8
- homepage = "https://pfund.ai"
9
- repository = "https://github.com/PFund-Software-Ltd/pfolio"
10
- documentation = "https://pfolio-docs.pfund.ai"
11
- keywords = ["portfolio management", "investment", "analytics", "analysis"]
12
-
13
- [tool.poetry.dependencies]
14
- python = "^3.10 <3.12"
15
- pfeed = "^0.0.1.dev6"
16
- quantstats = "^0.0.62"
17
- ffn = "^1.0.1"
18
- pyfolio-reloaded = "^0.9.5"
19
- alphalens-reloaded = "^0.4.3"
20
- empyrical-reloaded = "^0.5.9"
21
- pyportfolioopt = "^1.5.5"
22
- riskfolio-lib = "^6.0.0"
23
- empyrial = "^2.1.4"
24
-
25
- [tool.poetry.group.dev]
26
- optional = true
27
-
28
- [tool.poetry.group.dev.dependencies]
29
- pfeed = {path = "../pfeed", develop = true}
30
-
31
- [build-system]
32
- requires = ["poetry-core"]
33
- build-backend = "poetry.core.masonry.api"
File without changes