-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (37 loc) · 1.12 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
[tool.poetry]
name = "compone-development"
version = "0.1.0"
description = "Monoproject for development of all compone projects"
authors = ["György Kiss <[email protected]>"]
license = "MIT"
package-mode = false
[tool.poetry.dependencies]
python = "^3.8"
compone = { path = "./core", develop = true }
compone-stories = { path = "./stories", develop = true }
compone-cli = { path = "./cli", develop = true }
compone-ssg = { path = "./ssg", develop = true }
compone-preline = { path = "./frameworks/preline-ui", develop = true }
mkdocs-material = "^9.5.41"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0"
pytest-sugar = "*"
pytest-icdiff = "*"
jinja2 = "^3.1.4"
pytest-benchmark = "^4.0.0"
[tool.pytest.ini_options]
addopts = "--benchmark-disable"
testpaths = ["core/tests"]
[tool.ruff.lint]
select = [
"E", # pycodestyle error
"F", # pyflakes
"W", # pycodestyle warning like tab-indentation, trailing-whitespace
"C90", # mccabe code complexity
"I", # isort
]
ignore = [
"E731", # Do not assign a lambda expression, use a def
]
mccabe = { max-complexity = 5 }
per-file-ignores = { "__init__.py" = ["F401"] }