forked from flathub-infra/flatpak-builder-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (43 loc) · 1.08 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
[tool.poetry]
name = "flatpak_builder_lint"
version = "2.1.5"
description = "A linter for flatpak-builder manifests"
authors = ["Bartłomiej Piotrowski <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.10"
jsonschema = "^4.19.1"
requests = "^2.32.2"
lxml = "^5.2.2"
sentry-sdk = "^2.8.0"
PyGObject = "^3.48.2"
requests-cache = "^1.2.1"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
mypy = "^0.981"
pylint = "^2.14.5"
pre-commit = "^2.20.0"
black = "^24.3.0"
Flake8-pyproject = "^1.1.0"
types-requests = "^2.28.11"
types-jsonschema = "^4.16.0"
types-lxml = "^2024.4.14"
PyGObject-stubs = "^2.10.0"
[tool.poetry.scripts]
flatpak-builder-lint = "flatpak_builder_lint.cli:main"
[tool.poetry.group.dev.dependencies]
ipdb = "^0.13.13"
ruff = "^0.2.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
disallow_untyped_defs = true
disallow_any_unimported = true
no_implicit_optional = true
check_untyped_defs = true
warn_unused_ignores = true
show_error_codes = true
warn_return_any = true
[tool.flake8]
max-line-length = 100