-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (41 loc) · 970 Bytes
/
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
[build-system]
requires = ["maturin>=1,<2"]
build-backend = "maturin"
[tool.maturin]
python-source = "python"
[project]
name = "spl_transpiler"
requires-python = ">=3.10"
description = "Convert Splunk SPL queries into PySpark code"
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"black",
"pydantic>=2",
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-dependency",
"tabulate",
"pyparsing",
]
cli = [
"textual[syntax]",
"pyperclip",
]
runtime = [
"pyspark",
"ipython",
"rich",
"pydantic-settings",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
# Ignore the bulk query test by default (it can still be run directly)
addopts = "--ignore=tests/test_sample_files_parse.py --ignore=tests/sample_data"