-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
49 lines (39 loc) · 1.19 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
[tool.poetry]
name = "secrules-parsing"
version = "0.2.4"
description = "ModSecurity DSL Parser package using textX"
authors = [
"Felipe Zipitria <[email protected]>"
]
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.7,<4.0"
textX = ">=2.3,<4.0"
importlib-metadata = ">=4.11.3,<7.0.0"
[tool.poetry.scripts]
secrules-parser = 'secrules_parsing.cli:run'
[tool.poetry.dev-dependencies]
pytest = "^7.4.4"
ppretty = "^1.3"
toml = "^0.10.2"
[tool.semantic_release]
version_variable = "pyproject.toml:version"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"