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 52
|
[project]
name = "textual-autocomplete"
version = "4.0.6"
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"
license= "MIT"
license-files = ["LICENSE"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"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",
"Typing :: Typed",
]
[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"
|