34 lines
672 B
TOML
34 lines
672 B
TOML
[project]
|
|
name = "sp2xr"
|
|
version = "2.0.0"
|
|
description = "SP2-XR toolkit"
|
|
readme = "README.md"
|
|
requires-python = ">=3.9"
|
|
dependencies = [
|
|
"dask[dataframe]>=2024.6",
|
|
"pandas>=2.2",
|
|
"numpy>=1.26",
|
|
"dask[distributed]",
|
|
"dask-jobqueue",
|
|
"psutil",
|
|
"pyyaml",
|
|
"bokeh>=3.1.0"
|
|
]
|
|
|
|
# How to Build the Package:
|
|
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
# tell setuptools the code lives in src/
|
|
[tool.setuptools]
|
|
package-dir = {"" = "src"}
|
|
|
|
# Useful for optional features:
|
|
[project.optional-dependencies]
|
|
notebook = [
|
|
"ipython>=8",
|
|
"ipywidgets>=8",
|
|
"ipykernel>=6",
|
|
"matplotlib>=3.7"
|
|
] |