Files
VimKit/pyproject.toml
2026-07-11 16:12:25 -04:00

39 lines
963 B
TOML

[project]
name = "vimkit"
version = "0.1.0"
description = "Reusable Textual vim-style editor widgets and extension hooks."
readme = "README.md"
authors = [
{ name = "Raelon", email = "tty303@proton.me" }
]
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.14"
keywords = ["textual", "tui", "vim", "editor", "terminal-ui"]
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: Textual",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: User Interfaces",
"Topic :: Terminals",
"Typing :: Typed",
]
dependencies = [
"textual[syntax]>=8.2.8",
]
[project.urls]
Homepage = "https://git.th3r00t.net/th3r00t/VimKit"
Source = "https://git.th3r00t.net/th3r00t/VimKit"
[dependency-groups]
dev = [
"twine>=6.1.0",
]
[build-system]
requires = ["uv_build>=0.11.23,<0.12.0"]
build-backend = "uv_build"