-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (41 loc) · 1.25 KB
/
pyproject.toml
File metadata and controls
51 lines (41 loc) · 1.25 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
[tool.poetry]
name = "secrules-parsing"
version = "0.2.4"
description = "ModSecurity DSL Parser package using textX"
authors = [
"Felipe Zipitria <felipe.zipitria@owasp.org>"
]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/coreruleset/secrules_parsing"
repository = "https://github.com/coreruleset/secrules_parsing"
documentation = "https://github.com/coreruleset/secrules_parsing"
keywords = ["secrule", "modsecurity", "parser", "textX"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
packages = [
{ include = "secrules_parsing", from = "src" }
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/coreruleset/secrules_parsing/issues"
# Requirements
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
textX = ">=4.3,<4.4"
importlib-metadata = ">=8.9.0,<8.10.0"
setuptools = ">=65.0.0,<81.0.0"
[tool.poetry.scripts]
secrules-parser = 'secrules_parsing.cli:run'
[tool.poetry.group.dev.dependencies]
pytest = "8.4.2"
ppretty = "1.3"
toml = "0.10.2"
setuptools = "==80.10.2"
[tool.semantic_release]
version_variable = "pyproject.toml:version"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"