forked from mozilla/klaatu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (47 loc) · 1.22 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
51
52
53
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
[tool.poetry]
name = "klaatu"
version = "0.1.0"
description = ""
authors = ["Benjamin Forehand Jr <[email protected]>"]
license = "Mozilla Public License Version 2.0"
[tool.black]
line-length = 99
[tool.isort]
profile = "black"
skip_gitignore = true
[tool.mypy]
python_version = "3.11"
disable_error_code = "attr-defined"
disallow_untyped_calls = false
follow_imports = "normal"
ignore_missing_imports = true
pretty = true
show_error_codes = true
strict_optional = true
warn_no_return = true
warn_redundant_casts = true
warn_return_any = true
warn_unused_ignores = true
warn_unreachable = true
[tool.poetry.dependencies]
python = "^3.11"
pydocstyle = "^6.3.0"
selenium = "^4.24.0"
pytest-bdd = "^7.2.0"
pytest-firefox = "^0.1.1"
pytest-selenium = "^4.1.0"
black = "^24.8.0"
pytest-rerunfailures = "^13.0"
mypy = "^1.11.0"
isort = "^5.13.2"
flake8 = "^7.1.0"
beautifulsoup4 = "^4.12.3"
pytest-repeat = "^0.9.3"
flask = "^3.0.2"
python-dateutil = "^2.9.0.post0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"