-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
61 lines (56 loc) · 1.33 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
51
52
53
54
55
56
57
58
59
60
61
[build-system]
requires = [
"maturin>=1.8,<2.0"
]
build-backend = "maturin"
[project]
name = "comrak"
description = "Python bindings for the Comrak Rust library, a fast CommonMark/GFM parser"
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.9"
]
authors = [
{email = "louismmx@gmail.com", name = "Louis Maddox"}
]
keywords = [
"markdown",
"html",
"rust",
"commonmark",
"gfm",
"parser"
]
readme = "README.md"
requires-python = ">=3.9"
version = "0.0.6"
[project.license]
file = "LICENSE"
[project.optional-dependencies]
dev = [
"maturin[patchelf]>=1.8.2",
"pdm>=2.22.3",
"pdm-bump>=0.9.10",
"pre-commit>=4.1.0"
]
bench = [
"markdown>=3.7",
"markdown2>=2.5.3"
]
[project.urls]
Homepage = "https://github.com/lmmx/comrak"
Repository = "https://github.com/lmmx/comrak.git"
[tool.maturin]
features = [
"pyo3/extension-module"
]