-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (43 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
43
44
45
46
47
48
49
50
51
52
[tool.poetry]
name = "pySigma-backend-netwitness"
version = "0.2.0"
description = "pySigma NetWitness backend"
readme = "README.md"
authors = ["Marcel Kwaschny <[email protected]>"]
license = "LGPL-2.1-only"
repository = "https://github.com/marcelkwaschny/pySigma-backend-netwitness"
packages = [
{ include = "sigma" }
]
[tool.poetry.dependencies]
python = "^3.9"
pysigma = "^0.11.9"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.4"
pytest-cov = "^6.0.0"
coverage = "^7.6.9"
pylint = "^3.3.2"
black = "^24.10.0"
isort = "^5.13.2"
pre-commit = "^4.0.1"
pyproject-flake8 = "^7.0.0"
ruff = "^0.8.2"
defusedxml = "^0.7.1"
mypy = "^1.13.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.flake8]
max-line-length = 120
[tool.pylint.'MASTER']
init-hook = "import sys; sys.path.append('.')"
[tool.pylint.'FORMAT']
max-line-length=120
[tool.pylint.'MESSAGES CONTROL']
enable="all"
disable="too-few-public-methods,suppressed-message,locally-disabled,too-many-arguments,fixme,no-name-in-module"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
line_length = 120