forked from PythonFZ/ase_md_example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (35 loc) · 807 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
[tool.poetry]
name = "ase-md"
version = "0.1.0"
description = ""
authors = ["PythonFZ <[email protected]>"]
readme = "README.md"
packages = [{include = "ase_md"}]
[tool.poetry.dependencies]
python = "^3.8"
zntrack = {git = "https://github.com/zincware/ZnTrack.git", rev = "main"}
ase = "^3.22.1"
[tool.poetry.group.dev.dependencies]
black = "^22.10.0"
ruff = "^0.0.149"
isort = "^5.10.1"
pylint = "^2.15.7"
jupyterlab = "^3.5.0"
pytest = "^7.2.0"
pytest-xdist = "^3.0.2"
coverage = "^6.5.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 90
preview = true
[tool.isort]
profile = 'black'
multi_line_output = 3
[tool.ruff]
line-length = 90
select = ["E", "F", "D", "N", "C", "ANN"]
extend-ignore = [
"D213", "D203", "N802", "N801"
]