-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
46 lines (38 loc) · 1.05 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
[tool.poetry]
name = "abics"
version = "2.2.0"
description = "ab-Initio Configuration Sampling tool kit"
authors = ["abICS developers <[email protected]>"]
license = "GPL-3.0-or-later"
readme = "README.md"
repository = "https://github.com/issp-center-dev/abICS"
packages = [
{ include = "abics" }
]
[tool.poetry.dependencies]
python = "^3.9"
numpy = "^1.20"
toml = ">=0.10"
scipy = "^1"
mpi4py = "^3"
pymatgen = ">=2022.1.20"
qe_tools = "^1.1"
nequip = {version=">=0.5.6", optional=true}
[tool.poetry.extras]
nequip = ["nequip"]
[tool.poetry.dev-dependencies]
Sphinx = "^4.5.0"
sphinx-rtd-theme = "^1.0.0"
[tool.poetry.scripts]
abics_sampling = "abics.scripts.main:main"
st2abics = "abics.scripts.st2abics_config:main"
abicsRXsepT = "abics.scripts.abicsRXsepT:main"
abics_mlref = "abics.scripts.activelearn:main"
abics_train = "abics.scripts.train:main"
abics_postproc = "abics.scripts.postproc:main"
[tool.mypy]
files = "abics"
ignore_missing_imports = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"