Files
NiceGUIEx/pyproject.toml

38 lines
1.0 KiB
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "niceguiex"
version = "0.1.0"
description = "Extensions for NiceGUI including async elements and more"
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",
"pillow>=11.3.0",
]
[project.urls]
Homepage = "https://github.com/yourusername/niceguiex"
Issues = "https://github.com/yourusername/niceguiex/issues"
[tool.hatch.build.targets.wheel]
packages = ["src/niceguiex"]