forked from FAIRmat-NFDI/nomad-distro-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (51 loc) · 2.01 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
classifiers = [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
name = "nomad-distribution"
description = "nomad distribution template"
version = "0.1"
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
dependencies = [
"nomad-lab[parsing, infrastructure]>=1.3.4",
"perovskite-solar-cell-database @ git+https://github.com/FAIRmat-NFDI/nomad-perovskite-solar-cells-database.git@f394d21abafeb659729af0c94e5f90949fce01c1",
"nomad-porous-materials @ git+https://github.com/FAIRmat-NFDI/nomad-porous-materials.git@522f4a3208077f534f1c5e886527ee2104283d0b",
"nomad-aitoolkit @ git+https://github.com/FAIRmat-NFDI/nomad-aitoolkit.git@b203f8eb28dc4b6771a39d5c5b7ad3d9d8583ac8",
"nomad-simulations==0.0.1",
"pynxtools[convert]==0.5.0",
"nomad-schema-plugin-run>=1.0.1",
"nomad-schema-plugin-simulation-workflow>=1.0.1",
"nomad-normalizer-plugin-bandstructure>=1.0",
"nomad-normalizer-plugin-dos>=1.0",
"nomad-normalizer-plugin-soap>=1.0",
"nomad-normalizer-plugin-spectra>=1.0",
"nomad-normalizer-plugin-system>=1.0",
"nomad-normalizer-plugin-simulation-workflow>=1.0",
"eelsdbconverter @ git+https://github.com/nomad-coe/nomad-parser-eelsdb.git@entry-point",
"nomad-parser-plugins-electronic>=1.0",
"nomad-parser-plugins-atomistic>=1.0",
"nomad-parser-plugins-workflow>=1.0",
"nomad-parser-plugins-database>=1.0",
]
[tool.uv.workspace]
members = ["packages/*"]
[tool.uv.sources]
nomad-lab = { workspace = true }
[tool.uv]
extra-index-url = [
"https://gitlab.mpcdf.mpg.de/api/v4/projects/2187/packages/pypi/simple",
]
dev-dependencies = ["nomad-lab[parsing, infrastructure, dev]>=1.3.4"]
constraint-dependencies = ["hyperspy>=1.7.6"]
[tool.setuptools.packages.find]
exclude = ["gui*", "docs*", "config*"]