Files
rich-print/pyproject.toml
2026-04-01 23:12:21 -07:00

44 lines
1.0 KiB
TOML

[project]
name = "rp"
version = "0.2.1"
description = "Rich print files — markdown, JSON, code, and more — beautifully in your terminal"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "Yunxiao Xu", email = "xuyunxiao2001@gmail.com" }
]
keywords = ["cli", "rich", "syntax-highlighting", "markdown", "terminal"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Utilities",
"Typing :: Typed",
]
requires-python = ">=3.12"
dependencies = [
"rich>=13.0",
"typer>=0.12",
]
[project.scripts]
rp = "rp.cli:app"
[project.urls]
Homepage = "https://github.com/yunxiaoxu/rich-viewer"
Repository = "https://github.com/yunxiaoxu/rich-viewer"
[dependency-groups]
dev = [
"ruff>=0.9",
"mypy>=1.14",
]
[build-system]
requires = ["uv_build>=0.11.2,<0.12.0"]
build-backend = "uv_build"