forked from shdchen/vasp_manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
71 lines (62 loc) · 1.5 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[build-system]
requires =["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["vasp_manager"]
[project]
name = "vasp_manager"
description = "A simple package to run and analyze VASP calculations"
version = "1.1.4"
readme = {file = "README.md", content-type = "text/markdown"}
license = {text = "MIT"}
authors = [{name = "Dale Gaines II", email = "[email protected]"}]
maintainers = [{name = "Dale Gaines II", email = "[email protected]"}]
keywords = ["vasp", "dft", "high-throughput"]
requires-python = ">=3.10.0"
dependencies = [
"numpy>=1.22",
"pandas>=1.4",
"pymatgen>=2022.5",
"importlib_resources",
]
[project.optional-dependencies]
dev = ["black", "coverage", "isort", "pre-commit", "pytest"]
[project.urls]
repository = "https://github.com/dgaines2/vasp_manager"
[tool.black]
target-version = ["py310"]
line-length = 90
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| build
| dist
)/
| tests/data
'''
[tool.isort]
profile = "black"
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 90
[tool.flake8]
max-line-length = 90
exclude = "vasp_manager/tests/ | **/*.pyc | .git | __pycache__"
per-file-ignores = "__init__.py:F401"
select = "E, F, W, B9"
ignore = "E203, W503"
[tool.pytest.ini_options]
pythonpath = "."
addopts = "--import-mode=importlib"
[tool.coverage.run]
command_line = "-m pytest"
source = ["vasp_manager"]
omit = ["*tests*"]