-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 874 Bytes
/
pyproject.toml
File metadata and controls
30 lines (26 loc) · 874 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
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "xhtmlmd"
version = "0.1.0"
description = "A bounded-time, Pandoc-leaning Markdown parser with GFM, Extra/kramdown, math, fenced divs, and XHTML output."
license = {text = "MIT OR Apache-2.0"}
requires-python = ">=3.10"
readme = "README.md"
authors = [{name = "Jeremy Howard", email = "j@fast.ai"}]
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
]
[project.urls]
Homepage = "https://github.com/AnswerDotAI/xhtmlmd"
Repository = "https://github.com/AnswerDotAI/xhtmlmd"
Issues = "https://github.com/AnswerDotAI/xhtmlmd/issues"
[tool.maturin]
features = ["extension-module"]
python-source = "python"
module-name = "xhtmlmd._native"
data = "python/xhtmlmd.data"
[tool.pytest.ini_options]
testpaths = ["tests"]