-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (45 loc) · 1.21 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
[project]
requires-python = ">= 3.12"
[tool.poetry]
package-mode = false
name = "cdn-mgr"
version = "0.1.0"
description = ""
authors = ["lukasthaler <33826427+lukasthaler@users.noreply.github.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.12, <3.14"
aiofiles = "^24.1.0"
opencv-python = "^4.10.0.82"
opencv-contrib-python = "^4.10.0.82"
leagueutils = {version = "^0.0.2", source = "lu-private"}
filetype = "^1.2.0"
triggers = {version = "^1.1.1", source = "lu-private"}
[[tool.poetry.source]]
name = "lu-private"
url = "http://localhost:3141/packages/stable/+simple/"
priority = "explicit"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"C", # flake8-comprehensions
"B", # flake8-bugbear
]
ignore = [
"C901", # too complex
]
[tool.ruff.format]
quote-style = "single"
[tool.ruff.isort]
section-order = ["future", "standard-library", "third-party", "lu", "first-party", "local-folder"]
[tool.ruff.isort.sections]
lu = ["leagueutils", "rust_image_gen", "triggers"]
[tool.ruff.lint.pydocstyle]
convention = "pep257"