-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (56 loc) · 1.64 KB
/
pyproject.toml
File metadata and controls
60 lines (56 loc) · 1.64 KB
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
54
55
56
57
58
59
60
[project]
name = "pyromark"
version = "0.9.10"
description = "Blazingly fast Markdown parser"
readme = "README.md"
requires-python = ">=3.10"
authors = [{ name = "monosans", email = "hsyqixco@protonmail.com" }]
keywords = ["converter", "html"]
classifiers = [
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Rust",
"Typing :: Typed",
]
urls.documentation = "https://pyromark.readthedocs.io"
urls.repository = "https://github.com/monosans/pyromark"
scripts.pyromark = "pyromark._cli:main"
dependencies = ["typing-extensions>=3.7.4"]
[dependency-groups]
dev = [
"mypy==1.19.1",
"pytest==9.0.2",
"pytest-github-actions-annotate-failures==0.4.0",
"ruff==0.15.7",
]
docs = [
"mkdocs-materialx==10.1.0",
"mkdocs-minify-html-plugin==0.3.10",
"mkdocstrings==1.0.3",
"mkdocstrings-python==2.0.3",
"ruff==0.15.7",
]
[build-system]
requires = ["maturin>=1,<2"]
build-backend = "maturin"
[tool.maturin]
module-name = "pyromark._pyromark"
python-source = "python"
[tool.uv]
cache-keys = [
{ file = "pyproject.toml" },
{ file = "src/**/*.rs" },
{ file = "Cargo.toml" },
{ file = "Cargo.lock" },
]