Files
NiceGuiAsyncElement/pyproject.toml
2025-09-14 05:29:03 +02:00

37 lines
1.1 KiB
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "niceguiasyncelement"
version = "0.1.0"
description = "Async element wrapper for NiceGUI with proper typing support"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "MIT"}
authors = [
{name = "Your Name", email = "your.email@example.com"}
]
keywords = ["nicegui", "async", "ui", "web"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"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",
]
dependencies = [
"nicegui>=2.0.0",
]
[project.urls]
Homepage = "https://github.com/yourusername/NiceGuiAsyncElement"
Issues = "https://github.com/yourusername/NiceGuiAsyncElement/issues"
[tool.hatch.build.targets.wheel]
packages = ["src/niceguiasyncelement"]