2019-11-10 15:39:13 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "rich"
|
2022-10-12 07:47:42 +00:00
|
|
|
homepage = "https://github.com/Textualize/rich"
|
2020-01-19 17:18:05 +00:00
|
|
|
documentation = "https://rich.readthedocs.io/en/latest/"
|
2024-02-28 14:43:49 +00:00
|
|
|
version = "13.7.1"
|
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 = [
|
2021-06-06 20:28:34 +00:00
|
|
|
"Development Status :: 5 - Production/Stable",
|
|
|
|
"Environment :: Console",
|
2021-06-06 20:29:02 +00: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",
|
2021-12-12 10:27:19 +00:00
|
|
|
"Programming Language :: Python :: 3.7",
|
2020-02-04 18:26:53 +00:00
|
|
|
"Programming Language :: Python :: 3.8",
|
2020-10-09 13:59:58 +00:00
|
|
|
"Programming Language :: Python :: 3.9",
|
2021-05-19 15:52:26 +00:00
|
|
|
"Programming Language :: Python :: 3.10",
|
2022-07-14 15:55:34 +00:00
|
|
|
"Programming Language :: Python :: 3.11",
|
2023-09-30 13:18:35 +00:00
|
|
|
"Programming Language :: Python :: 3.12",
|
2021-06-06 20:28:34 +00:00
|
|
|
"Typing :: Typed",
|
2020-02-04 18:26:53 +00:00
|
|
|
]
|
2021-06-26 12:02:24 +00:00
|
|
|
include = ["rich/py.typed"]
|
2020-02-04 18:26:53 +00:00
|
|
|
|
2019-11-10 15:39:13 +00:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2022-10-11 10:18:50 +00:00
|
|
|
python = ">=3.7.0"
|
2022-04-04 10:20:53 +00:00
|
|
|
typing-extensions = { version = ">=4.0.0, <5.0", python = "<3.9" }
|
2023-03-04 15:14:15 +00:00
|
|
|
pygments = "^2.13.0"
|
2023-01-27 16:51:08 +00:00
|
|
|
ipywidgets = { version = ">=7.5.1,<9", optional = true }
|
2023-06-12 13:41:49 +00:00
|
|
|
markdown-it-py = ">=2.2.0"
|
2020-02-22 20:04:20 +00:00
|
|
|
|
2020-07-10 15:52:01 +00:00
|
|
|
[tool.poetry.extras]
|
|
|
|
jupyter = ["ipywidgets"]
|
|
|
|
|
2019-11-10 15:39:13 +00:00
|
|
|
[tool.poetry.dev-dependencies]
|
2022-02-04 13:56:25 +00:00
|
|
|
pytest = "^7.0.0"
|
2022-06-28 13:36:13 +00:00
|
|
|
black = "^22.6"
|
2022-07-20 13:39:30 +00:00
|
|
|
mypy = "^0.971"
|
2021-10-06 13:07:02 +00:00
|
|
|
pytest-cov = "^3.0.0"
|
2021-12-31 11:11:49 +00:00
|
|
|
attrs = "^21.4.0"
|
2022-02-11 11:12:37 +00:00
|
|
|
pre-commit = "^2.17.0"
|
2022-03-10 17:08:26 +00:00
|
|
|
asv = "^0.5.1"
|
2024-05-01 13:18:57 +00:00
|
|
|
importlib-metadata = { version = "*", python = "<3.8" }
|
2019-11-10 15:39:13 +00:00
|
|
|
|
|
|
|
[build-system]
|
2020-10-02 13:45:30 +00:00
|
|
|
requires = ["poetry-core>=1.0.0"]
|
2020-10-20 14:03:28 +00:00
|
|
|
build-backend = "poetry.core.masonry.api"
|
2022-03-21 17:30:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
[tool.mypy]
|
|
|
|
files = ["rich"]
|
|
|
|
show_error_codes = true
|
|
|
|
strict = true
|
2022-03-29 18:02:11 +00:00
|
|
|
enable_error_code = ["ignore-without-code", "redundant-expr", "truthy-bool"]
|
2022-03-21 17:30:43 +00:00
|
|
|
|
|
|
|
[[tool.mypy.overrides]]
|
2022-08-02 14:06:00 +00:00
|
|
|
module = ["pygments.*", "IPython.*", "ipywidgets.*"]
|
2022-03-21 17:30:43 +00:00
|
|
|
ignore_missing_imports = true
|
2022-05-25 08:51:08 +00:00
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
testpaths = ["tests"]
|
2022-06-15 13:27:15 +00:00
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
profile = "black"
|