-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (36 loc) · 989 Bytes
/
pyproject.toml
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
[project]
name = "sst-examples"
version = "0.1.0"
maintainers = [
{name = "Erik van Onselen", email = "[email protected]"},
{name = "Roeland Nieboer", email = "[email protected]"},
]
description = "Examples uses of the Deltares subsurface toolbox"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.12"
dependencies = [
"geost",
"deltaseis"
]
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[tool.pixi.project]
channels = ["conda-forge"]
platforms = ["win-64", "linux-64", "osx-64", "osx-arm64"]
[tool.pixi.dependencies]
jupyter = "*"
ipykernel = "*"
pip = "*"
scikit-learn = "*"
numpy = "*"
pandas = "*"
xgboost = "*"
seaborn = "*"
shap = "*"
[tool.pixi.pypi-dependencies]
sst_examples = { path = ".", editable = true }
[tool.pixi.tasks]
thickness = "jupyter notebook ./predict_sand_thickness/predict_sand_thickness_simple.ipynb"
seismic = "jupyter notebook ./offshore_seismic_edit/segy_editing.ipynb"