forked from eth-cscs/stackinator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (62 loc) · 1.65 KB
/
pyproject.toml
File metadata and controls
74 lines (62 loc) · 1.65 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
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "Stackinator"
authors = [{name = "Swiss National Supercomputing Center (CSCS/ETH Zurich)"}]
description = "Stackinator is a tool for building a scientific software stack from a recipe for vClusters on CSCS' Alps infrastructure"
license = "BSD-3-Clause"
license-files = ["LICENSE"]
dynamic = ["version"]
requires-python = ">=3.12"
dependencies = [
"python-magic",
"Jinja2",
"jsonschema",
"PyYAML",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: POSIX :: Linux",
"Environment :: Console",
]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
homepage = "https://github.com/eth-cscs/stackinator"
documentation = "https://eth-cscs.github.io/stackinator/"
[project.scripts]
stack-config = "stackinator.main:main"
[dependency-groups]
dev = [
"pytest",
]
docs = [
"mkdocs",
"mkdocs-material",
"mkdocs-autorefs",
]
[tool.setuptools]
packages = ["stackinator"]
include-package-data = false
[tool.setuptools.package-data]
stackinator = ["schema/*.json", "templates/*", "etc/*"]
[tool.setuptools.exclude-package-data]
"*" = ["__pycache__/*", "*.pyc"]
[tool.setuptools.dynamic]
version = {attr = "stackinator.VERSION"}
[tool.ruff]
line-length = 120
extend-exclude = [
"unittests/recipes/**/scripts/**/*.py",
"unittests/recipes/**/repo/packages/*/*.py",
]
[tool.ruff.lint]
select = ["E", "F"]
ignore = ["E203"]
[tool.pytest.ini_options]
testpaths = ["unittests"]