-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (44 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
50 lines (44 loc) · 1.17 KB
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
[tool.poetry]
name = "embark"
version = "0.10.0"
description = "Embark playbook executor and development kit"
authors = ["Tapeline"]
license = "GNU GPL 3.0"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.12,<3.14"
pydantic = "^2.9.2"
PyYAML = "^6.0.2"
customtkinter = "^5.2.2"
requests = "^2.32.3"
pillow = "^11.1.0"
[tool.poetry.group.dev.dependencies]
pylint = "^3.3.1"
mypy = "^1.11.2"
pyinstaller = "6.11.1"
wemake-python-styleguide = "^1.1.0"
ruff = "^0.9.1"
import-linter = "^2.1"
syrupy = "^4.8.1"
pytest-cov = "^6.0.0"
#types-PyYAML = "^6.0.12.20241230"
#types-requests = "^2.32.0.20241016"
pywinauto = "^0.6.9"
numpy = "^2.2.4"
imagehash = "^4.3.2"
[tool.poetry.scripts]
cleanbuild = "project_scripts:clean_build"
build = "project_scripts:build"
check = "project_scripts:check_all"
check_no_wps = "project_scripts:check_all_no_wps"
check_types = "project_scripts:check_mypy"
check_wps = "project_scripts:check_wps"
check_imports = "project_scripts:check_imports"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[[tool.mypy.overrides]]
module = ["customtkinter.*"]
ignore_missing_imports = true
[tool.mypy]
check_untyped_defs = true