-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (84 loc) · 2.63 KB
/
Copy pathpyproject.toml
File metadata and controls
91 lines (84 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
[project]
name = "pfund-plot"
version = "0.0.5"
description = "A library for financial data visualization"
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 = [
"pfund-kit>=0.1.11",
"panel>=1.9.3",
"hvplot>=0.12.2",
"dayplot>=0.6.0",
"anywidget>=0.11.0 ; sys_platform != 'emscripten'",
"ipywidgets-bokeh>=1.7.0 ; sys_platform != 'emscripten'",
"pywebview>=6.2.1 ; sys_platform != 'emscripten'",
"datashader>=0.19.1 ; sys_platform != 'emscripten'",
]
[project.optional-dependencies]
marimo = ["marimo[recommended,lsp]>=0.23.13"]
plotly = ["plotly>=6.8.0"]
# matplotlib = ["matplotlib>=3.11.0"]
# altair = [
# "altair>=6.2.2",
# "vegafusion>=2.0.3",
# "vl-convert-python>=1.9.0.post1",
# ]
# jupyter = [
# "jupyter-bokeh>=4.1.0",
# "notebook>=7.5.7",
# "papermill>=2.7.0",
# "voila>=0.5.12",
# ]
# dash = [
# "dash>=4.2.0",
# "dash-ag-grid>=35.2.0",
# "dash-extensions>=2.0.5",
# "dash-mantine-components>=2.8.0",
# ]
[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-plot.pfund.ai"
repository = "https://github.com/PFund-Software-Ltd/pfund-plot"
documentation = "https://pfund-plot.pfund.ai/doc"
[build-system]
requires = ["uv_build>=0.11.26,<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 = "src"