forked from SigmaHQ/pySigma
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (54 loc) · 1.4 KB
/
pyproject.toml
File metadata and controls
61 lines (54 loc) · 1.4 KB
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
[project]
name = "pySigma"
version = "0.11.23"
license = "LGPL-2.1-only"
description = "Sigma rule processing and conversion tools"
authors = [
{ name = "Thomas Patzke", email = "thomas@patzke.org" },
{ name = "AIex_3" },
]
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Security"
]
[project.urls]
Repository = "https://github.com/iSecNG/pySigma"
[tool.poetry]
packages = [
{ include = "sigma" }
]
[tool.poetry.dependencies]
python = "^3.9"
packaging = "^25.0"
pyparsing = "^3.2"
pyyaml = "^6.0"
requests = "^2.32"
jinja2 = "^3.1.6"
types-pyyaml = "^6.0.12.20240917"
[tool.poetry.group.dev.dependencies]
black = "^24.1"
mypy = "^1.16"
pip = "^26.0"
pre-commit = "^4.2"
pylint = "^3.3"
pytest = "^8.4"
pytest-cov = "^6.2"
pytest-mypy = "^1.0"
Sphinx = "^7.4" # 8.0 is not compatible with Python 3.9
defusedxml = "^0.7"
types-requests = "^2.32.0.20250306"
[tool.black]
line-length = 100
[build-system]
requires = ["poetry-core>=2.1.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
filterwarnings = ["ignore::DeprecationWarning"]
markers = ["online"]