forked from wagga40/pySigma-backend-sqlite
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (40 loc) · 996 Bytes
/
pyproject.toml
File metadata and controls
53 lines (40 loc) · 996 Bytes
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
[project]
name = "pySigma-backend-sqlite"
version = "1.1.3"
description = "pySigma sqlite backend"
readme = "README.md"
authors = [
{ name = "wagga" }
]
license = "LGPL-3.0-only"
[tool.poetry]
packages = [
{ include = "sigma" }
]
[tool.poetry.dependencies]
python = "^3.10"
pysigma = ">=1.0.2,<=2.0"
[tool.poetry.group.dev.dependencies]
black = "^24.1"
pytest = "^8.0"
pytest-cov = "^4.1"
coverage = "^7.4"
[tool.pytest.ini_options]
filterwarnings = [
# Suppress pyparsing deprecation warning from pySigma library
"ignore:'parseString' deprecated:DeprecationWarning",
]
[tool.pdm]
[tool.pdm.dev-dependencies]
dev = []
[tool.pdm.build]
includes = ["sigma"]
[build-system]
requires = ["poetry-core>=1.8.1"]
build-backend = "poetry.core.masonry.api"
[project.urls]
Repository = "https://github.com/SigmaHQ/pySigma-backend-sqlite"
[project.group.dev.dependencies]
pytest = "^8.0"
pytest-cov = "^4.1"
coverage = "^7.4"