forked from SigmaHQ/pySigma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (45 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
[tool.poetry]
name = "pySigma"
version = "0.11.13"
license = "LGPL-2.1-only"
description = "Sigma rule processing and conversion tools"
authors = ["Thomas Patzke <[email protected]>"]
readme = "README.md"
repository = "https://github.com/SigmaHQ/pySigma"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Security"
]
packages = [
{ include = "sigma" }
]
[tool.poetry.dependencies]
python = "^3.8"
packaging = "^24.1"
pyparsing = "^3.1"
pyyaml = "^6.0"
requests = "^2.31"
jinja2 = "^3.1"
[tool.poetry.dev-dependencies]
black = "^24.4.2"
mypy = "^1.8"
pre-commit = "^3.5"
pylint = "^3.0"
pytest = "^8.0"
pytest-cov = "^4.1"
pytest-mypy = "^0.10"
Sphinx = "^7.1"
defusedxml = "^0.7"
[tool.black]
line-length = 100
[build-system]
requires = ["poetry-core>=1.8.1"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
filterwarnings = ["ignore::DeprecationWarning"]