-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
79 lines (69 loc) · 1.8 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[tool.poetry]
name = "earhorn"
version = "0.20.3"
description = "Listen, monitor and archive your streams!"
authors = ["Joola <jooola@users.noreply.github.com>"]
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[tool.poetry.scripts]
earhorn = "earhorn.main:cli"
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
click = "^8.0.1"
httpx = "^0.27.0"
lxml = "^5.0.0"
prometheus-client = "^0.21.0"
pydantic = "^2.0.0"
typing-extensions = "^4.2.0"
python-dotenv = "^1.0.0"
boto3 = { version = "^1.24.8", optional = true }
sentry-sdk = { version = "^1.14.0", optional = true }
[tool.poetry.extras]
s3 = ["boto3"]
sentry = ["sentry-sdk"]
[tool.poetry.group.dev.dependencies]
bandit = "^1.7.4"
black = "^24.2"
flake8 = "^7.0.0"
isort = "^5.9.3"
lxml-stubs = "^0.5.0"
moto = "^5.0.0"
mypy = "^1.0"
pylint = "^3.0.0"
pytest = "^8.0.0"
pytest-cov = "^5.0.0"
pytest-httpx = "^0.32.0"
pytest-xdist = "^3.0.0"
testcontainers = "^4.0.0"
types-boto3 = "^1.0.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
combine_as_imports = true
[tool.pylint.messages_control]
extension-pkg-whitelist = ["lxml.etree", "pydantic"]
disable = [
"missing-module-docstring",
"missing-function-docstring",
"missing-class-docstring",
"line-too-long",
]
[tool.pylint.format]
disable = "logging-fstring-interpolation"
[tool.mypy]
check_untyped_defs = true
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "DEBUG"