-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
98 lines (89 loc) · 2.63 KB
/
pyproject.toml
File metadata and controls
98 lines (89 loc) · 2.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[project]
name = "pfund-plot"
version = "0.0.1.dev3"
description = "A library for financial data visualization, dashboard creation, and template sharing."
license = "Apache-2.0"
authors = [
{name = "Stephen Yau", email = "softwareentrepreneer+pfund-plot@gmail.com"}
]
readme = "README.md"
keywords = ["financial data", "plotting", "dashboards", "charts", "data visualization", "graphs", "plots"]
classifiers = [
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Information Technology",
"Topic :: Office/Business :: Financial :: Investment",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries",
"Typing :: Typed",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.11"
dependencies = [
"pfeed>=0.0.5",
"panel>=1.8.10",
"hvplot>=0.12.2",
"anywidget>=0.10.0",
"ipywidgets-bokeh>=1.7.0",
"pywebview>=6.1 ; sys_platform != 'emscripten'",
"datashader>=0.19.0 ; sys_platform != 'emscripten'",
]
[project.optional-dependencies]
marimo = [
"marimo[recommended,lsp]>=0.23.1",
]
jupyter = [
"jupyter-bokeh>=4.0.5",
"notebook>=7.5.5",
"papermill>=2.7.0",
"voila>=0.5.11",
# "jupytext>=1.17.2",
]
matplotlib = [
"matplotlib>=3.10.8",
# "mplcursors>=0.7.0",
]
plotly = ["plotly>=6.7.0"]
altair = [
"altair>=6.0.0",
# "vegafusion>=2.0.3",
]
[dependency-groups]
dev = [
"afterpython>=0.2.1",
]
[project.scripts]
plt = "pfund_plot.__main__:run_cli"
[project.entry-points."pfund_shell.commands"]
plt = "pfund_plot.cli:pfund_plot_group"
[project.urls]
homepage = "https://pfund.ai"
repository = "https://github.com/PFund-Software-Ltd/pfund-plot"
documentation = "https://pfund-plot-docs.pfund.ai"
[build-system]
requires = ["uv_build>=0.11.2,<0.12.0"]
build-backend = "uv_build"
[tool.pyright]
# typeCheckingMode = "basic"
reportAny = false
reportExplicitAny = false
reportUnnecessaryIsInstance = false
reportIncompatibleVariableOverride = false
reportIncompatibleMethodOverride = false
reportRedeclaration = false
reportUnreachable = false
reportImportCycles = false
reportPrivateUsage = false
reportMissingTypeStubs = false
reportUnannotatedClassAttribute = false
reportImplicitOverride = false
[tool.uv.build-backend]
module-name = "pfund_plot"
module-root = ""
[tool.uv.sources]
pfeed = { path = "../pfeed", editable = true }
pfund-kit = { path = "../pfund-kit", editable = true }