-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (47 loc) · 1.04 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
[tool.poetry]
name = "ZnSlice"
version = "0.1.3"
description = "Cache, advanced slicing and lazy loading for __getitem__"
license = "Apache-2.0"
authors = ["zincwarecode <[email protected]>"]
readme = "README.md"
[tool.poetry.urls]
repository = "https://github.com/zincware/ZnSlice"
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.group.dev.dependencies]
black = "^23.1.0"
isort = "^5.12.0"
ruff = "^0.0.252"
pytest = "^7.2.1"
ipykernel = "^6.20.2"
ase = "^3.22.1"
tqdm = "^4.64.1"
coverage = "^7.0.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.run]
relative_files = true
branch = true
# omit the tests themselves
omit = ["*/tests/*", "*/tmp/*", "*/interface/*"]
[tool.coverage.report]
exclude_lines = [
"raise AssertionError",
"raise NotImplementedError",
"if 0:",
"if __name__ == .__main__.:"
]
ignore_errors = true
[tool.ruff]
select = ["E", "F", "D", "N", "C"]
extend-ignore = [
"C901",
"D213", "D203",
"D401",
"N802", "N801"
]
exclude = [
"tests",
]