-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (27 loc) · 924 Bytes
/
pyproject.toml
File metadata and controls
32 lines (27 loc) · 924 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]
requires = ["maturin>=0.14,<1.12"]
build-backend = "substrait_validator_build"
backend-path = ["."]
[project]
name = "substrait-validator"
version = "0.1.4"
description = "Validator for Substrait query plans"
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["substrait"]
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = ["protobuf > 3.19.3", "click >= 8", "pyyaml >= 6", "jdot >= 0.5"]
[project.optional-dependencies]
test = ["pytest < 9.0.0", "toml >= 0.10.2"]
[project.urls]
homepage = "https://substrait.io/"
repository = "https://github.com/substrait-io/substrait-validator"
[project.scripts]
substrait-validator = "substrait_validator:cli"
[tool.maturin]
include = ["substrait_validator/substrait/**/*.py"]