-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
pyproject.toml
42 lines (37 loc) · 1.11 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
[tool.poetry]
name = "pySigma-backend-elasticsearch"
version = "1.1.4"
description = "pySigma Elasticsearch backend supporting Lucene, ES|QL (with correlations) and EQL queries"
readme = "README.md"
authors = ["Thomas Patzke <[email protected]>", "Hendrik Baecker <[email protected]>"]
license = "LGPL-3.0-only"
repository = "https://github.com/SigmaHQ/pySigma-backend-elasticsearch"
packages = [
{ include = "sigma" }
]
[tool.poetry.dependencies]
python = "^3.9"
pysigma = "^0.11.7"
[tool.poetry.group.dev.dependencies]
pytest = ">=7.3,<9.0"
pytest-cov = ">=4,<7"
coverage = ">=6.4.1,<8.0.0"
requests = "^2.28.1"
autopep8 = "^2.0.2"
pylint = ">=2.17.2,<4.0.0"
defusedxml = "^0.7.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pylint.'MESSAGES CONTROL']
disable = "missing-function-docstring,missing-module-docstring,line-too-long,too-many-lines"
[tool.pytest.ini_options]
minversion = "6.0"
python_files = "test_*.py"
addopts = "-vv --cov=sigma --cov-report term --cov-report xml:cov.xml"
testpaths = [
"tests",
]
filterwarnings = [
'ignore:Unverified HTTPS request'
]