forked from zincware/ZnInit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
82 lines (67 loc) · 1.44 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
72
73
74
75
76
77
78
79
80
81
82
[tool.poetry]
name = "zninit"
version = "0.1.11"
description = "Descriptor based dataclass implementation"
authors = ["zincwarecode <[email protected]>"]
license = "Apache-2.0"
keywords = ["dataclass", "descriptor"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
typeguard = {version = "^2.13.3", optional = true}
[tool.poetry.group.dev.dependencies]
pytest = "^7.1.3"
coverage = "^6.4.4"
pre-commit = "^2.20.0"
[tool.poetry.group.notebook.dependencies]
jupyterlab = "^3.4.7"
[tool.poetry.extras]
typeguard = ["typeguard"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.urls]
repository = "https://github.com/zincware/ZnInit"
[tool.black]
line-length = 90
preview = true
[tool.isort]
profile = 'black'
multi_line_output = 3
[tool.pylint.messages_control]
max-line-length = 90
disable = [
"logging-fstring-interpolation",
"use-list-copy", # I do not understand this one
]
[tool.ruff]
line-length = 90
select = ["E", "F", "D", "N", "C"] #, "ANN"]
extend-ignore = [
"D213", "D203", "N802"
]
# Exclude a variety of commonly ignored directories.
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".hg",
".mypy_cache",
".nox",
".pants.d",
".ruff_cache",
".svn",
".tox",
".venv",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"venv",
"tmp",
]
[tool.codespell]
skip = "poetry.lock"