-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (48 loc) · 1.56 KB
/
Copy pathpyproject.toml
File metadata and controls
51 lines (48 loc) · 1.56 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
49
50
51
[build-system]
requires = ["maturin>=1.0"]
build-backend = "maturin"
[project]
name = "lumiview"
authors = [{ name = "校溯", email = "xiaosu@xiaosu.icu" }]
description = "Pythonic desktop window + webview — lightweight, async-first, no toolchain required."
readme = "README.md"
version = "0.1.2"
requires-python = ">=3.10"
dependencies = ["wryview>=0.5.4", "cattrs>=26.1", "typing_extensions~=4.11"]
license = "MPL-2.0"
license-files = ["LICENSE"]
keywords = [
"tao",
"window",
"webview",
"desktop",
"gui",
"pyo3",
"wry",
]
classifiers = [
"Development Status :: 3 - Alpha",
"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",
"Programming Language :: Rust",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: User Interfaces",
]
[project.urls]
Homepage = "https://github.com/xiaosuawa/LumiView"
Repository = "https://github.com/xiaosuawa/LumiView"
Issues = "https://github.com/xiaosuawa/LumiView/issues"
Discussions = "https://github.com/xiaosuawa/LumiView/discussions"
[tool.maturin]
python-source = "python"
module-name = "lumiview._core"
features = ["pyo3/extension-module", "pyo3/abi3-py310"]
manylinux = "off"