-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (33 loc) · 890 Bytes
/
pyproject.toml
File metadata and controls
39 lines (33 loc) · 890 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
32
33
34
35
36
37
38
39
[project]
name = "wfl"
requires-python = ">=3.9"
dependencies = [ "click>=7.0", "numpy<2", "ase>=3.22.1", "pyyaml", "spglib",
"docstring_parser", "expyre-wfl", "universalSOAP", "pandas" ]
readme = "README.md"
license = { file = "LICENSE" }
dynamic = ["version"]
[project.scripts]
wfl = "wfl.cli.cli:cli"
gap_rss_iter_fit = "wfl.cli.gap_rss_iter_fit:cli"
dft_convergence_test = "wfl.cli.dft_convergence_test:cli"
reactions_iter_fit = "wfl.cli.reactions_iter_fit:cli"
[tool.setuptools.packages.find]
include = [ "wfl*" ]
[tool.setuptools.dynamic]
version = {attr = "wfl.__version__"}
[project.optional-dependencies]
test = [
"pytest",
"mace-torch",
"quippy-ase",
"requests",
"rdkit==2024.3.3",
]
doc = [
"sphinx",
"sphinx_click",
"nbsphinx",
"myst_parser",
"sphinx_book_theme",
]
all = ["wfl[test,doc]"]