-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (78 loc) · 1.74 KB
/
pyproject.toml
File metadata and controls
85 lines (78 loc) · 1.74 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
[project]
name = "plotjs"
version = "0.0.12"
description = "Turn static matplotlib charts into interactive web visualizations, and export them to HTML files"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "Joseph Barbier", email = "joseph.barbierdarnal@mail.com" },
]
keywords = [
"css",
"d3",
"interactive",
"javascript",
"matplotlib",
"mpld3",
"plotnine",
"web"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3"
]
dependencies = [
"jinja2>=3.0.0",
"matplotlib>=3.10.0",
"narwhals>=2.0.0",
]
[project.urls]
Documentation = "https://y-sunflower.github.io/plotjs/"
Homepage = "https://y-sunflower.github.io/plotjs/"
Issues = "https://github.com/y-sunflower/plotjs/issues"
Repository = "https://github.com/y-sunflower/plotjs"
[dependency-groups]
dev = [
"coverage>=7.9.1",
"drawarrow>=0.1.0",
"genbadge[coverage]>=1.1.2",
"highlight-text>=0.2",
"ipywidgets>=8.1.7",
"jupyter>=1.1.1",
"mkdocs-material>=9.6.9",
"mkdocstrings-python>=1.16.5",
"morethemes>=0.4.0",
"nbclient>=0.10.2",
"nbformat>=5.10.4",
"pandas>=2.3.1",
"playwright>=1.40.0",
"plotnine>=0.13.6",
"polars>=1.31.0",
"prek>=0.3.5",
"pyfonts>=1.0.0",
"pypalettes>=0.1.4",
"pytest>=8.3.5",
"pywaffle>=1.1.1",
"ruff>=0.11.13",
"seaborn>=0.13.2",
"ty>=0.0.1a16",
"zensical>=0.0.27",
]
[build-system]
requires = [
"setuptools",
"setuptools-scm",
]
build-backend = "setuptools.build_meta"
[tool.ruff]
extend-exclude = ["docs/index.qmd"]
[tool.setuptools]
packages = ["plotjs"]
[tool.ty.src]
include = ["plotjs"]
exclude = ["tests", "sandbox"]
[tool.uv.sources]
plotjs = { workspace = true }