pfund-plot 0.0.1.dev1__tar.gz → 0.0.1.dev2__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pfund-plot
3
- Version: 0.0.1.dev1
3
+ Version: 0.0.1.dev2
4
4
  Summary: A wrapper of the existing plotting libraries for financial data analysis.
5
5
  Home-page: https://pfund.ai
6
6
  License: Apache-2.0
@@ -22,17 +22,18 @@ Classifier: Programming Language :: Python :: 3.13
22
22
  Classifier: Topic :: Office/Business :: Financial :: Investment
23
23
  Classifier: Topic :: Scientific/Engineering :: Visualization
24
24
  Classifier: Topic :: Software Development :: Libraries
25
+ Provides-Extra: all
25
26
  Provides-Extra: app
26
27
  Provides-Extra: big-data
27
- Requires-Dist: dash (>=2.18.1,<3.0.0) ; extra == "app"
28
- Requires-Dist: datashader (>=0.16.3,<0.17.0) ; extra == "big-data"
28
+ Requires-Dist: dash (>=2.18.1,<3.0.0) ; extra == "app" or extra == "all"
29
+ Requires-Dist: datashader (>=0.16.3,<0.17.0) ; extra == "big-data" or extra == "all"
29
30
  Requires-Dist: great-tables (>=0.13.0,<0.14.0)
30
- Requires-Dist: hvplot (>=0.11.1,<0.12.0) ; extra == "big-data"
31
- Requires-Dist: numba (>=0.60.0,<0.61.0) ; extra == "big-data"
32
- Requires-Dist: panel (>=1.5.2,<2.0.0) ; extra == "app"
31
+ Requires-Dist: hvplot (>=0.11.1,<0.12.0) ; extra == "big-data" or extra == "all"
32
+ Requires-Dist: numba (>=0.60.0,<0.61.0) ; extra == "big-data" or extra == "all"
33
+ Requires-Dist: panel (>=1.5.2,<2.0.0) ; extra == "app" or extra == "all"
33
34
  Requires-Dist: plotly (>=5.24.1,<6.0.0)
34
- Requires-Dist: streamlit (>=1.39.0,<2.0.0) ; extra == "app"
35
- Requires-Dist: taipy (>=4.0.0,<5.0.0) ; extra == "app"
35
+ Requires-Dist: streamlit (>=1.39.0,<2.0.0) ; extra == "app" or extra == "all"
36
+ Requires-Dist: taipy (>=4.0.0,<5.0.0) ; extra == "app" or extra == "all"
36
37
  Project-URL: Documentation, https://pfund-plot-docs.pfund.ai
37
38
  Project-URL: Repository, https://github.com/PFund-Software-Ltd/pfund-plot
38
39
  Description-Content-Type: text/markdown
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "pfund-plot"
3
- version = "0.0.1.dev1"
3
+ version = "0.0.1.dev2"
4
4
  description = "A wrapper of the existing plotting libraries for financial data analysis."
5
5
  license = "Apache-2.0"
6
6
  authors = ["stephenyau <softwareentrepreneer+pfund-plot@gmail.com>"]
@@ -39,6 +39,7 @@ streamlit = {version = "^1.39.0", optional = true}
39
39
  [tool.poetry.extras]
40
40
  big-data = ["hvplot", "numba", "datashader"] # need numba to get around llvmlite install issue when installing datashader
41
41
  app = ["dash", "taipy", "panel", "streamlit"]
42
+ all = ["hvplot", "numba", "datashader", "dash", "taipy", "panel", "streamlit"]
42
43
 
43
44
  [build-system]
44
45
  requires = ["poetry-core"]
File without changes