File: pyproject.toml

package info (click to toggle)
textual-autocomplete 4.0.6-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 796 kB
  • sloc: python: 1,907; makefile: 4
file content (52 lines) | stat: -rw-r--r-- 1,333 bytes parent folder | download
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"