-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (26 loc) · 723 Bytes
/
Copy pathpyproject.toml
File metadata and controls
29 lines (26 loc) · 723 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
[project]
name = "tkhtmlview"
version = "0.3.2"
description = "Display HTML with Tkinter"
authors = [{ name = "Palash Bauri", email = "palashbauri1@gmail.com" }]
requires-python = ">=3.10,<4"
readme = "README.md"
license = "MIT"
classifiers = [
"Programming Language :: Python :: 3",
"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 = [
"requests>=2.32.4,<3",
"Pillow>=11,<13",
]
[tool.uv]
[tool.uv.build-backend]
module-root = ""
[build-system]
requires = ["uv_build>=0.8.22,<0.9.0"]
build-backend = "uv_build"