feat: add PyPI metadata — authors, classifiers, keywords

This commit is contained in:
Brian Krabach
2026-04-04 14:09:33 -07:00
parent 547c89ac6d
commit 23a6dfac31
2 changed files with 48 additions and 0 deletions
+14
View File
@@ -8,6 +8,20 @@ version = "0.1.0"
description = "Web-based tmux session dashboard — access all your tmux sessions from any browser"
readme = "README.md"
license = { text = "MIT" }
authors = [{name = "Brian Krabach", email = "brian@krabach.com"}]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: System :: Systems Administration",
"Topic :: Terminals :: Terminal Emulators/X Terminals",
"Environment :: Web Environment",
"Framework :: FastAPI",
]
keywords = ["tmux", "terminal", "dashboard", "web", "session-manager"]
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115.0",