1
0
Fork 0

Adding upstream version 4.0.4.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-05-04 22:09:41 +02:00
parent 1f832614e9
commit 0832c185c0
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
48 changed files with 7595 additions and 0 deletions

38
pyproject.toml Normal file
View file

@ -0,0 +1,38 @@
[project]
name = "textual-autocomplete"
version = "4.0.4"
description = "Easily add autocomplete dropdowns to your Textual apps."
authors = [
{ name = "Darren Burns", email = "darrenb900@gmail.com" }
]
readme = "README.md"
packages = [{ include = "textual_autocomplete" }]
dependencies = [
"textual>=2.0.0",
"typing-extensions>=4.5.0",
]
requires-python = ">=3.9.0"
[tool.uv]
dev-dependencies = [
"mypy",
"pytest>=8.3.5",
"pytest-asyncio>=0.24.0",
"pytest-textual-snapshot>=1.1.0",
"pytest-xdist>=3.6.1",
"textual-dev",
]
[tool.hatch.build.targets.wheel]
packages = ["textual_autocomplete"]
[tool.hatch.metadata]
allow-direct-references = true
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "session"