forked from Sustainable-Solutions-Lab/GLADE
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (26 loc) · 946 Bytes
/
Copy pathpyproject.toml
File metadata and controls
31 lines (26 loc) · 946 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
31
# SPDX-FileCopyrightText: 2026 Koen van Greevenbroek
#
# SPDX-License-Identifier: GPL-3.0-or-later
# Minimal pyproject.toml to make workflow.scripts importable as a package.
# This allows Snakemake scripts in subdirectories to import shared modules
# using standard Python imports like `from workflow.scripts.constants import ...`
#
# All actual dependencies are managed by pixi.toml - this file only handles
# the editable install of the workflow package itself.
[project]
name = "food-opt-workflow"
version = "0.0.1"
description = "Food systems optimization workflow scripts"
requires-python = ">=3.13"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["workflow*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"integration: full Snakemake workflow integration tests",
"plots: figure generation tests (optional, slow)",
]