forked from flathub-infra/flatpak-builder-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (38 loc) · 987 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
44
45
[tool.poetry]
name = "flatpak_builder_lint"
version = "2.0.8"
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"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
mypy = "^0.971"
pylint = "^2.14.5"
pre-commit = "^2.20.0"
isort = "^5.10.1"
black = "^22.6.0"
Flake8-pyproject = "^1.1.0"
types-requests = "^2.28.11"
types-jsonschema = "^4.16.0"
[tool.poetry.scripts]
flatpak-builder-lint = "flatpak_builder_lint.cli:main"
[tool.poetry.group.dev.dependencies]
ipdb = "^0.13.13"
[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