-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 964 Bytes
/
pyproject.toml
File metadata and controls
43 lines (37 loc) · 964 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
36
37
38
39
40
41
42
43
[build-system]
build-backend = "hatchling.build"
requires = [ "hatchling" ]
[project]
name = "tex2im"
version = "2.5.1"
description = "Create images from latex snippets."
readme = "README.md"
authors = [
{ name = "CD Clark III", email = "clifton.clark@gmail.com" },
]
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"typer>=0.12.5",
]
scripts."tex2im" = "tex2im:app"
scripts."x2im" = "tex2im.x2im:app"
[dependency-groups]
dev = [
"cram>=0.7",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = [ "src/tex2im" ]
[tool.uv]
managed = true