-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (70 loc) · 2.1 KB
/
pyproject.toml
File metadata and controls
78 lines (70 loc) · 2.1 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[project]
name = "py4vasp"
version = "0.11.2"
description = "Tool for assisting with the analysis and setup of VASP calculations."
authors = [
{ name = "VASP Software GmbH", email = "py4vasp@vasp.at" },
{ name = "Martin Schlipf", email = "martin.schlipf@gmail.com" },
{ name = "Henrique Miranda", email = "miranda.henrique@gmail.com" },
{ name = "Orest Dubay", email = "orest-d@users.noreply.github.com" },
{ name = "Jonathan Lahnsteiner", email = "jonathan.lahnsteiner@gmx.at" },
{ name = "Eisuke Kawashima", email = "e-kwsm@users.noreply.github.com" },
{ name = "Sudarshan Vijay", email = "sudarshan.vijay@protonmail.com" },
{ name = "Marie-Therese Huebsch", email = "marie-therese.huebsch@vasp.at" },
{ name = "Michael Wolloch", email = "michael.wolloch@vasp.at" },
{ name = "Andreas Singraber", email = "andreas.singraber@vasp.at" },
{ name = "Alexey Tal", email = "alexey.tal@vasp.at" },
{ name = "Tomáš Bučko", email = "tomas.bucko@uniba.sk" },
{ name = "Max Liebetreu", email = "max.liebetreu@vasp.at" },
]
requires-python = ">=3.10"
readme = "README.md"
license = "Apache-2.0"
dependencies = [
"numpy>=2.0",
"h5py>=3.9.0",
"pandas>=2.0",
"nglview>=3.0.5",
"ase>=3.23",
"plotly>=5.23",
"kaleido>=1.0",
"ipython>=8.26",
"scipy>=1.12.0",
"click>=8.1.8",
]
[project.urls]
Homepage = "https://vasp.at/py4vasp/latest"
Repository = "https://github.com/vasp-dev/py4vasp"
"Support Forum" = "https://vasp.at/forum/"
[project.scripts]
py4vasp = "py4vasp.cli:cli"
error-analysis = "py4vasp.scripts.error_analysis:main"
[project.entry-points."sphinx.builders"]
hugo = "py4vasp._sphinx:setup"
[dependency-groups]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
"pylint>=3.0",
"hypothesis>=6.79",
"black>=23.7",
"isort>=5.13",
"ipykernel>=6.25.0",
"pre-commit>=3.3.3",
]
doc = [
"sphinx>=8.0",
"sphinx-automodapi>=0.16",
]
[tool.uv]
default-groups = [
"dev",
"doc",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.isort]
profile = "black"
[tool.black]
target-version = ["py311"]