forked from issp-center-dev/2DMAT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (32 loc) · 980 Bytes
/
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
[tool.poetry]
name = "py2dmat"
version = "2.2.0"
description = "Data-analysis software of quantum beam diffraction experiments for 2D material structure"
authors = ["2DMAT developers <[email protected]>"]
license = "GPL-3.0-or-later"
readme = "README.md"
repository = "https://github.com/issp-center-dev/2DMAT"
packages = [
{ include = "py2dmat", from = "src" }
]
[tool.poetry.dependencies]
python = ">=3.6.8"
numpy = "^1.14"
tomli = ">=1.2"
scipy = {version = "^1", optional = true}
mpi4py = {version = "^3", optional = true}
physbo = {version = ">= 1.0.0", optional = true}
[tool.poetry.extras]
min_search = ["scipy"]
bayes = ["physbo"]
exchange = ["mpi4py"]
all = ["scipy", "mpi4py", "physbo"]
[tool.poetry.dev-dependencies]
black = "^22.3.0"
pynvim = "^0.4.3"
[tool.poetry.scripts]
py2dmat = "py2dmat:main"
py2dmat_neighborlist = "py2dmat.util.neighborlist:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"