SIGN IN SIGN UP
Textualize / rich UNCLAIMED

Rich is a Python library for rich text and beautiful formatting in the terminal.

0 0 0 Python
2019-11-10 15:39:13 +00:00
[tool.poetry]
name = "rich"
homepage = "https://github.com/Textualize/rich"
2020-01-19 17:18:05 +00:00
documentation = "https://rich.readthedocs.io/en/latest/"
2026-02-19 17:11:10 +00:00
version = "14.3.3"
2020-03-13 16:55:08 +00:00
description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal"
2019-11-10 15:39:13 +00:00
authors = ["Will McGugan <willmcgugan@gmail.com>"]
license = "MIT"
2019-12-25 16:52:42 +00:00
readme = "README.md"
2020-02-04 18:26:53 +00:00
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
2021-06-06 16:29:02 -04:00
"Framework :: IPython",
2020-02-04 18:26:53 +00:00
"Intended Audience :: Developers",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.8",
2020-10-09 14:59:58 +01:00
"Programming Language :: Python :: 3.9",
2021-05-19 16:52:26 +01:00
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
2023-09-30 14:18:35 +01:00
"Programming Language :: Python :: 3.12",
2024-09-08 14:24:13 +03:00
"Programming Language :: Python :: 3.13",
2025-10-09 08:45:16 +01:00
"Programming Language :: Python :: 3.14",
"Typing :: Typed",
2020-02-04 18:26:53 +00:00
]
2021-06-26 13:02:24 +01:00
include = ["rich/py.typed"]
2020-02-04 18:26:53 +00:00
2019-11-10 15:39:13 +00:00
[tool.poetry.dependencies]
2024-09-30 20:37:16 +01:00
python = ">=3.8.0"
2023-03-04 15:14:15 +00:00
pygments = "^2.13.0"
2023-01-27 17:51:08 +01:00
ipywidgets = { version = ">=7.5.1,<9", optional = true }
2023-06-12 14:41:49 +01:00
markdown-it-py = ">=2.2.0"
2020-02-22 20:04:20 +00:00
2020-07-10 16:52:01 +01:00
[tool.poetry.extras]
jupyter = ["ipywidgets"]
2019-11-10 15:39:13 +00:00
[tool.poetry.dev-dependencies]
pytest = "^7.0.0"
black = "^22.6"
2024-09-30 20:37:16 +01:00
mypy = "^1.11"
pytest-cov = "^3.0.0"
attrs = "^21.4.0"
pre-commit = "^2.17.0"
typing-extensions = ">=4.0.0, <5.0"
2019-11-10 15:39:13 +00:00
[build-system]
2020-10-02 14:45:30 +01:00
requires = ["poetry-core>=1.0.0"]
2020-10-20 15:03:28 +01:00
build-backend = "poetry.core.masonry.api"
[tool.mypy]
files = ["rich"]
show_error_codes = true
strict = true
enable_error_code = ["ignore-without-code", "redundant-expr", "truthy-bool"]
2024-08-26 10:48:30 +01:00
[[tool.mypy.overrides]]
2022-08-02 15:06:00 +01:00
module = ["pygments.*", "IPython.*", "ipywidgets.*"]
ignore_missing_imports = true
2024-09-30 17:45:26 +01:00
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.isort]
profile = "black"