-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
47 lines (42 loc) · 955 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
40
41
42
43
44
45
46
47
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "phelel"
dynamic = ["version"]
readme = {file = "README.md", content-type = "text/markdown"}
description = "Electron-phonon code."
authors = [
{name = "Atsushi Togo", email = "[email protected]"}
]
requires-python = ">=3.9"
dependencies = [
"phonopy >= 2.33.4",
"phono3py >= 3.6.0",
"finufft",
"click",
"tomli",
"tomli-w"
]
license = {file = "LICENSE"}
[project.scripts]
phelel = "phelel.scripts.phelel:run"
phelel-load = "phelel.scripts.phelel_load:run"
velph = "phelel.velph.cli:cmd_root"
[tool.setuptools.dynamic]
version = { attr = "phelel.version.__version__" }
[tool.ruff]
line-length = 88
lint.select = [
"F", # Flake8
"B", # Black
"I", # isort
"E", # pycodestyle-errors
"D", # pydocstyle
]
lint.extend-ignore = [
"D417",
"D100",
]
[tool.ruff.lint.pydocstyle]
convention = "numpy"