forked from RedHatProductSecurity/rapidast
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (26 loc) · 928 Bytes
/
pyproject.toml
File metadata and controls
32 lines (26 loc) · 928 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=64",
"setuptools-scm[toml]>=8",
]
[project]
name = "rapidast"
dynamic = ["dependencies", "version"]
requires-python = ">= 3.9"
[tool.setuptools]
packages = ["configmodel", "exports", "utils", "scanners"]
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.in"] }
[tool.setuptools_scm]
[tool.ruff]
line-length = 120
[tool.pytest.ini_options]
filterwarnings = [
# Ignore deprecation warnings from `lark` (a `cel-python` dependency).
# These stem from `lark` v0.12.x which uses deprecated `sre_constants` and `sre_parse` modules.
# `cel-python`'s main branch has an updated `lark` dependency that resolves this.
# This filter can be removed once a `cel-python` release with the updated `lark` is available.
"ignore:module 'sre_constants' is deprecated",
"ignore:module 'sre_parse' is deprecated",
]