-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
48 lines (42 loc) · 1010 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
46
47
48
[tool.poetry]
name = "foxpuppet"
version = "0.1.0"
description = ""
authors = ["Benjamin Forehand Jr <[email protected]>"]
license = "Mozilla Public License 2.0 (MPL 2.0)"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
selenium = "^4.26.1"
[tool.poetry.group.dev.dependencies]
flake8 = "^7.1.1"
flake8-docstrings = "^1.7.0"
flake8-isort = "^6.1.1"
pytest = "^8.3.3"
pytest-cov = "^5.0.0"
pytest-selenium = "^4.1.0"
black = "^24.10.0"
mypy = "^1.12.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 99
[tool.isort]
profile = "black"
skip_gitignore = true
[tool.mypy]
python_version = "3.12"
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
exclude = "docs/.*"