Files
SP2XR/pyproject.toml

32 lines
716 B
TOML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
[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 theyre 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",
]