-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (52 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
50
51
52
53
54
55
56
57
58
59
60
61
62
[tool.poetry]
name = "sagemcom-f3896-client"
version = "0.6.1"
description = ""
authors = ["Ties de Kock <ties@tiesdekock.nl>"]
readme = "README.md"
[project.scripts]
f3896-cli = "sagemcom_f3896_client.cli:cli"
[tool.poetry.dependencies]
click = "^8.1.7"
python = "^3.10"
aiohttp = "^3.9.4"
prometheus-async = {extras = ["aiohttp"], version = "^22.2.0" }
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.7.1"
flake8 = "^7.0.0"
black = "^24.4.0"
pytest = "^8.1.1"
pytest-asyncio = "^0.23.5"
twine = "^5.0.0"
check-manifest = "^0.49"
pytest-cov = "^4.1.0"
pytest-xdist = "^3.6.1"
ruff = "^0.3.7"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
target-version = ["py310"]
include = '\.pyi?$'
extend-exclude = '''
/(
| \.mypy_cache
| \.tox
| \.venv
| build
| dist
)/
'''
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88
profile = "black"
[tool.ruff]
ignore = ["E501"]
[tool.pytest]
junit_family = "xunit2"
[settings]
# known_third_party = []