-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
54 lines (47 loc) · 1.18 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
54
[tool.poetry]
name = "broken-links-crawler-action"
version = "3.3.1"
description = "GitHub Action to check a website for broken links"
authors = ["Tom Stein <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{ include = "deadseeker" }]
[tool.poetry.dependencies]
python = ">=3.8.1,<3.12"
validators = ">=0.18.2"
aiohttp = "^3.8.5"
aiodns = "^3.0.0"
aiohttp-retry = "^2.8.3"
[tool.poetry.group.dev.dependencies]
flake8 = "^6.0.0"
flake8-pyproject = "^1.2.2"
pytest = "^7.4.0"
pytest-cov = "^4.1.0"
pre-commit = "^3.5.0"
pytest-aiohttp = "^1.0.4"
mypy = ">=0.971,<2"
aiounittest = "^1.4.2"
aioresponses = "^0.7.3"
mutmut = "^2.4.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.mutmut]
paths_to_mutate = "deadseeker/"
runner = "python -m pytest -x --assert=plain -m \"not integrationtest\" --cov"
use_coverage = true
[tool.mypy]
files = "deadseeker"
disallow_untyped_defs = true
[tool.flake8]
count = true
show_source = true
max_complexity = 10
statistics = true
max-line-length = 120
[tool.pytest.ini_options]
asyncio_mode = "auto"
markers = """
integrationtest: mark test as an integration test
asyncio: asynchronous tests
"""