-
-
Notifications
You must be signed in to change notification settings - Fork 141
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (57 loc) · 1.48 KB
/
pyproject.toml
File metadata and controls
64 lines (57 loc) · 1.48 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
62
63
64
[project]
name = "pySigma"
version = "1.3.3"
license = "LGPL-2.1-only"
description = "Sigma rule processing and conversion tools"
authors = [
{ name = "Thomas Patzke", email = "thomas@patzke.org" },
]
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.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Security"
]
[project.urls]
Repository = "https://github.com/SigmaHQ/pySigma"
[tool.poetry]
packages = [
{ include = "sigma" }
]
[tool.poetry.dependencies]
python = "^3.10"
packaging = "^26.0"
pyparsing = "^3.2.5"
pyyaml = "^6.0.3"
requests = "^2.32.5"
jinja2 = "^3.1.6"
types-pyyaml = "^6.0.12.20250915"
typing-extensions = "^4.15.0"
diskcache = "^5.6.3"
diskcache-stubs = "^5.6.3.6.20240818"
[tool.poetry.group.dev.dependencies]
black = "^26.3.1"
mypy = "^1.18"
pip = "^26.0.1"
pre-commit = "^4.4"
pylint = "^4.0"
pytest = "^9.0"
pytest-cov = "^7.0"
pytest-mypy = "^1.0"
Sphinx = "^8"
defusedxml = "^0.7"
types-requests = "^2.32.4.20250913"
[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"]