forked from flathub-infra/flatpak-builder-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (42 loc) · 1.06 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
[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.16.0"
requests = "^2.28.1"
lxml = "^4.9.3"
sentry-sdk = "^1.34.0"
PyGObject = "^3.46.0"
[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 = "^2023.10.21"
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