-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 960 Bytes
/
pyproject.toml
File metadata and controls
35 lines (30 loc) · 960 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
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "typst"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dynamic = ["version"]
dependencies = []
license = "Apache-2.0"
license-files = ["LICENSE"]
description = "Python binding to Typst, a new markup-based typesetting system that is powerful and easy to learn."
readme = "README.md"
[project.urls]
Homepage = "https://github.com/messense/typst-py/"
Repository = "https://github.com/messense/typst-py"
Readme = "https://github.com/messense/typst-py/blob/main/README.md"
Documentation = "https://github.com/messense/typst-py/blob/main/README.md"
[dependency-groups]
dev = [
"pytest>=8.3.5",
]
[tool.maturin]
module-name = "typst._typst"
python-source = "python"
features = ["pyo3/extension-module"]