-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 822 Bytes
/
pyproject.toml
File metadata and controls
31 lines (27 loc) · 822 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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "quickjax"
version = "0.1.0"
description = "Zero-dependency MathJax v4 SVG renderer for Python, powered by QuickJS"
readme = "README.md"
license = "MIT"
requires-python = ">=3.8"
dependencies = ["quickjs"]
authors = [
{ name = "Qalxry", email = "qalxry@qq.com" },
]
keywords = ["mathjax", "latex", "svg", "math", "rendering"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Text Processing :: Markup :: LaTeX",
]
[project.urls]
Homepage = "https://github.com/Qalxry/QuickJax"
Repository = "https://github.com/Qalxry/QuickJax"
[tool.setuptools.packages.find]
include = ["quickjax*"]
[tool.setuptools.package-data]
quickjax = ["js/*.js"]