forked from vasp-dev/py4vasp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (48 loc) · 1.4 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
57
[tool.poetry]
name = "py4vasp"
version = "0.8.0"
description = "Tool for assisting with the analysis and setup of VASP calculations."
authors = [
"VASP Software GmbH <[email protected]>",
"Martin Schlipf <[email protected]>",
"Henrique Miranda <[email protected]>",
"Orest Dubay <[email protected]>",
"Jonathan Lahnsteiner <[email protected]>",
"Eisuke Kawashima <[email protected]>",
"Sudarshan Vijay <[email protected]>"
]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://vasp.at/py4vasp/latest"
repository = "https://github.com/vasp-dev/py4vasp"
[tool.poetry.urls]
"Support Forum" = "https://vasp.at/forum/"
[tool.poetry.dependencies]
python = ">=3.8"
numpy = ">=1.23"
h5py = ">=3.7.0"
pandas = ">=1.4.3"
nglview = ">=3.0.5"
ase = ">=3.22.1"
plotly = ">=5.9.0"
kaleido = ">=0.2.1,<0.2.1.post1 || >0.2.1.post1"
ipython = ">=8.12"
[tool.poetry.group.dev.dependencies]
pytest = ">=7.1.2"
pytest-cov = ">=3.0.0"
pylint = ">=2.15"
hypothesis = ">=6.48.1"
black = ">=22.6.0"
isort = ">=5.10.1"
ipykernel = ">=6.25.0"
pre-commit = ">=3.3.3"
[tool.poetry.group.doc.dependencies]
sphinx = ">=5.0.2"
sphinx-automodapi = ">=0.14.1"
[tool.poetry.scripts]
error-analysis = "py4vasp.scripts.error_analysis:main"
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"