-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 902 Bytes
/
Copy pathpyproject.toml
File metadata and controls
38 lines (34 loc) · 902 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
[project]
authors = [
{name = "harehare", email = "harehare1110@gmail.com"},
]
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python",
]
dependencies = []
description = "Python bindings for mq, a jq-like command-line tool for Markdown processing"
keywords = ["markdown", "jq", "command-line", "tool"]
license = {text = "MIT"}
name = "markdown-query"
readme = "README.md"
requires-python = ">=3.10"
version = "0.6.2"
[tool.maturin]
module-name = "mq.mq"
python-packages = ["mq"]
python-source = "src"
[build-system]
build-backend = "_maturin_wrapper"
backend-path = ["."]
requires = ["maturin>=1.0,<2.0"]
[dependency-groups]
dev = [
"maturin>=1.0,<2.0",
"pytest>=8.3.5",
]
[project.urls]
Documentation = "https://mqlang.org/book/"
Homepage = "https://mqlang.org/"
Issues = "https://github.com/harehare/mq/issues"
Repository = "https://github.com/harehare/mq.git"