-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (39 loc) · 1021 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
43
[tool.poetry]
name = "crasher"
version = "1.0.0"
description = "🎨🔨 Application for make datamosh"
authors = ["selfkilla666 <selfkilla666yahoo.com>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
pydantic = "^2.8.2"
argparse = "^1.4.0"
toml = "^0.10.2"
pyside6 = "^6.6.0"
loguru = "^0.7.2"
yapsy = "^1.12.2"
pillow = "^10.1.0"
opencv-python = "^4.9.0.80"
numpy = "^1.26.1"
cffi = "^1.16.0"
shiboken6 = "^6.7.3"
[tool.poetry.group.dev.dependencies]
mypy = "^1.6.1"
ruff = "^0.6.8"
types-pillow = "^10.1.0.0"
types-toml = "^0.10.8.7"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 88
exclude = [".git", "__pycache__", "venv"]
ignore = [
"T201", # No print statements (H202)
"W191", # Tabs instead of spaces (H233)
"E303", # Too many blank lines (H401)
"RUF005", # Prefer f-strings (H501)
"E501", # Line too long (E501)
"W292", # No newline at end of file (W292)
]