-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
116 lines (101 loc) · 2.37 KB
/
Copy pathpyproject.toml
File metadata and controls
116 lines (101 loc) · 2.37 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
[project]
name = "reprotrail"
version = "0.1.0"
description = "Reusable provenance, runtime snapshot, and reproduction helpers"
readme = "README.md"
authors = [
{ name = "Jan Haacker", email = "152862650+j-haacker@users.noreply.github.com" }
]
requires-python = ">=3.11"
license = "MIT"
license-files = ["LICENSE"]
dependencies = []
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
[project.urls]
Documentation = "https://j-haacker.github.io/reprotrail/"
Changelog = "https://github.com/j-haacker/reprotrail/blob/main/CHANGELOG.md"
Issues = "https://github.com/j-haacker/reprotrail/issues"
Source = "https://github.com/j-haacker/reprotrail"
[project.optional-dependencies]
products = [
"rocrate",
"spdx-tools",
"xarray",
"zarr",
]
test = [
"pytest",
]
docs = [
"furo",
"myst-parser",
"sphinx",
]
dev = [
"pre-commit",
"pre-commit-hooks",
"pytest",
"ruff",
"sphinx",
"furo",
"myst-parser",
]
[project.scripts]
reprotrail = "reprotrail.cli:main"
[build-system]
requires = ["uv_build>=0.11.0,<0.12.0"]
build-backend = "uv_build"
[tool.reprotrail]
repos = ["."]
product_root_markers = []
env_var_whitelist = [
"OMP_NUM_THREADS",
"OPENBLAS_NUM_THREADS",
"MKL_NUM_THREADS",
"NUMEXPR_NUM_THREADS",
"VECLIB_MAXIMUM_THREADS",
"PIXI_ENVIRONMENT_NAME",
"SLURM_JOB_ID",
"SLURM_JOB_NAME",
"SLURM_CPUS_PER_TASK",
]
package_summary = ["reprotrail"]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "I"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.pixi.workspace]
channels = ["conda-forge"]
platforms = ["linux-64"]
[tool.pixi.pypi-dependencies]
reprotrail = { path = ".", editable = true }
[tool.pixi.dependencies]
python = ">=3.11"
[tool.pixi.feature.dev.dependencies]
furo = "*"
myst-parser = "*"
pre-commit = "*"
pytest = "*"
ruff = "*"
sphinx = "*"
uv = "*"
[tool.pixi.feature.dev.pypi-dependencies]
rocrate = "*"
spdx-tools = "*"
[tool.pixi.environments]
dev = ["dev"]
[tool.pixi.tasks]
test = "pytest"
lint = "ruff check ."
docs = "sphinx-build -W -b html docs docs/_build/html"
build-docs = { depends-on = ["docs"] }