-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (45 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
48 lines (45 loc) · 1.09 KB
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
[project]
name = "latex-on-http"
version = "0.1.0"
description = "LaTeX-on-HTTP"
authors = [{ name = "Yoan Tournade", email = "y@yoantournade.com" }]
requires-python = ">=3.12,<3.14"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"requests (>=2.32.3)",
"flask (>=3.1.0)",
"fclist-cffi (>=1.1.2)",
"gunicorn (>=23.0.0)",
"texlivemetadata (>=0.1.3)",
"hy (>=1.0.0)",
"urllib3 (>=2.3.0)",
"pyzmq (>=26.2.1)",
"msgpack (>=1.1.0)",
"colorama (>=0.4.6)",
"glom (>=24.11.0)",
"flask-cors (>=5.0.1)",
"importlib-metadata (>=8.6.1)",
"hyrule (>=0.8.0)",
"sentry-sdk[flask]>=2.22.0",
"cerberus (>=1.3.7)",
"envparse (>=0.2.0)",
"psutil (>=7.1.0)",
]
[dependency-groups]
dev = [
"pytest>=9.0.3",
"requests-futures>=1.0.2",
"black>=25.1.0",
"pdf2image>=1.17.0",
"hexdump>=3.3",
]
[tool.uv]
package = false
[build-system]
requires = ["uv_build>=0.10.0,<0.11.0"]
build-backend = "uv_build"