-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
50 lines (46 loc) · 1.5 KB
/
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
46
47
48
49
50
[build-system]
build-backend = "maturin"
requires = ["maturin>=1,<2"]
[project]
name = "pyromark"
version = "0.7.0"
description = "Blazingly fast Markdown parser"
readme = "README.md"
keywords = ["converter", "html"]
authors = [{ name = "monosans", email = "[email protected]" }]
requires-python = ">=3.9"
classifiers = [
"License :: OSI Approved :: MIT License",
"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.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Rust",
"Typing :: Typed",
]
dependencies = ["typing-extensions>=3.7.4.2"]
urls.documentation = "https://pyromark.readthedocs.io"
urls.repository = "https://github.com/monosans/pyromark"
scripts.pyromark = "pyromark._cli:main"
[dependency-groups]
dev = ["mypy[faster-cache]==1.13", "pytest==8.3.3", "ruff==0.8.0"]
docs = [
"mkdocs-material==9.5.46",
"mkdocs-minify-html-plugin==0.2.3",
"mkdocstrings==0.27",
"mkdocstrings-python==1.12.2",
]
[tool.maturin]
python-source = "python"
module-name = "pyromark._pyromark"
[tool.uv]
package = false