32 lines
716 B
TOML
32 lines
716 B
TOML
[project]
|
||
name = "sp2xr"
|
||
version = "0.0.0"
|
||
description = "SP2-XR toolkit (placeholder until full v2 metadata)"
|
||
readme = "README.md"
|
||
requires-python = ">=3.9"
|
||
dependencies = [
|
||
"dask[dataframe]>=2024.6",
|
||
"pandas>=2.2",
|
||
"numpy>=1.26",
|
||
"scipy>=1.11",
|
||
"matplotlib>=3.8",
|
||
"seaborn>=0.13",
|
||
"dask[distributed]",
|
||
"dask-jobqueue",
|
||
"bokeh!=3.0.*,>=2.4.2",
|
||
# add others as you discover they’re imported at top level
|
||
]
|
||
|
||
[build-system]
|
||
requires = ["setuptools>=68", "wheel"]
|
||
build-backend = "setuptools.build_meta"
|
||
|
||
[tool.setuptools]
|
||
# tell setuptools our code lives in src/
|
||
package-dir = {"" = "src"}
|
||
|
||
[project.optional-dependencies]
|
||
notebook = [
|
||
"ipython>=8",
|
||
"ipywidgets>=8",
|
||
] |