-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (41 loc) · 1.16 KB
/
Copy pathpyproject.toml
File metadata and controls
48 lines (41 loc) · 1.16 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
[build-system]
requires = ["setuptools>=64", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
fallback_version = "0.0"
[project]
classifiers = [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
name = "nomad-distribution"
description = "nomad distribution template"
dynamic = ["version"]
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
dependencies = [
"nomad-lab[infrastructure]==1.4.3",
]
[project.urls]
repository = "https://github.com/FAIRmat-NFDI/nomad-distro-template"
[project.optional-dependencies]
# Add your plugins to the list below.
plugins = [
"nomad-north-jupyter>=0.2.6",
]
jupyter = ["jupyter-events"]
gpu-action = []
cpu-action = []
dev = ["nomad-lab[infrastructure, dev]==1.4.3"]
[tool.uv]
extra-index-url = [
"https://gitlab.mpcdf.mpg.de/api/v4/projects/2187/packages/pypi/simple",
]
prerelease = "if-necessary-or-explicit"
[tool.setuptools.packages.find]
exclude = ["gui*", "docs*", "config*"]