-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (56 loc) · 1.24 KB
/
pyproject.toml
File metadata and controls
69 lines (56 loc) · 1.24 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
65
66
67
68
[build-system]
requires = ["hatchling>=1.18"]
build-backend = "hatchling.build"
[project]
name = "syslogcef"
version = "0.1.0"
description = "High-performance conversion of syslog and JSON events to ArcSight CEF"
readme = "README.md"
authors = [{ name = "Original Authors" }]
license = { file = "LICENSE" }
requires-python = ">=3.10"
dependencies = []
[project.urls]
Homepage = "https://github.com/allamiro/JSON-SYSLOG-TO-CEF"
Repository = "https://github.com/allamiro/JSON-SYSLOG-TO-CEF"
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-cov>=4.0",
"mypy>=1.8",
"ruff>=0.5",
"black>=24.4",
"isort>=5.13",
]
[project.scripts]
syslogcef = "syslogcef.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/syslogcef"]
[tool.black]
line-length = 100
target-version = ["py310"]
[tool.isort]
profile = "black"
line_length = 100
[tool.ruff]
target-version = "py310"
line-length = 100
[tool.ruff.lint]
select = [
"E",
"F",
"I",
"UP",
"B",
]
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "--strict-markers --strict-config"
pythonpath = ["src"]
[tool.mypy]
python_version = "3.10"
strict = true
mypy_path = "src"
[[tool.mypy.overrides]]
module = ["dateutil.*", "yaml"]
ignore_missing_imports = true