-
-
Notifications
You must be signed in to change notification settings - Fork 377
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (29 loc) · 759 Bytes
/
pyproject.toml
File metadata and controls
30 lines (29 loc) · 759 Bytes
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
[project]
name = "python-data-viz-workshop"
version = "4.0.0"
description = "A workshop on data visualization in Python created by Stefanie Molin"
readme = "README.md"
license-files = [ "LICENSE" ]
authors = [
{ name = "Stefanie Molin", email = "[email protected]" },
]
requires-python = ">=3.10" # Python 3.10 is EOL in October 2026
dependencies = [
"bokeh==3.7.3",
"ffmpeg",
"geopandas==1.1.1",
"jupyterlab>=4.1.8",
"matplotlib==3.10.5",
"numpy==2.2.6", # 2.3.0 supports Python>=3.11,<=3.13
"pandas==2.3.1",
"seaborn==0.13.2",
"shapely==2.1.1",
"geoviews==1.14.0",
"holoviews==1.21.0",
"hvplot==0.12.0",
"panel==1.7.5",
]
[dependency-groups]
slides = [
"nbmerge>=0.0.4",
]