-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (32 loc) · 807 Bytes
/
pyproject.toml
File metadata and controls
39 lines (32 loc) · 807 Bytes
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
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.backends._legacy:_Backend"
[project]
name = "pyDFTD3"
version = "1.0.0"
description = "Python version of Grimme's D3-dispersion correction"
readme = "README.md"
license = "MIT"
requires-python = ">=3.8"
authors = [
{name = "Rob Paton"},
{name = "Kelvin Jackson"},
]
dependencies = [
"cclib",
]
[project.optional-dependencies]
test = ["pytest"]
ase = ["ase"]
dev = ["pytest", "ruff"]
[project.scripts]
pydftd3 = "dftd3.dftd3:main"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
[tool.ruff.lint.per-file-ignores]
# Legacy Grimme data arrays use tabs; reformatting would create a huge diff for no benefit
"dftd3/pars.py" = ["W191", "E101"]
[tool.pytest.ini_options]
testpaths = ["tests"]