2019-11-10 15:39:13 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "rich"
|
2019-12-25 16:52:42 +00:00
|
|
|
homepage = "https://github.com/willmcgugan/rich"
|
2020-01-19 17:18:05 +00:00
|
|
|
documentation = "https://rich.readthedocs.io/en/latest/"
|
2020-09-11 15:47:10 +00:00
|
|
|
version = "6.1.2"
|
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 = [
|
2020-05-08 12:36:12 +00:00
|
|
|
"Development Status :: 5 - Production/Stable",
|
2020-02-04 18:26:53 +00:00
|
|
|
"Environment :: Console",
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"Operating System :: Microsoft :: Windows",
|
|
|
|
"Operating System :: MacOS",
|
|
|
|
"Operating System :: POSIX :: Linux",
|
|
|
|
"Programming Language :: Python :: 3.6",
|
|
|
|
"Programming Language :: Python :: 3.7",
|
|
|
|
"Programming Language :: Python :: 3.8",
|
|
|
|
]
|
2020-03-31 13:25:49 +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]
|
2019-12-25 16:05:11 +00:00
|
|
|
python = "^3.6"
|
|
|
|
typing-extensions = "^3.7.4"
|
2019-12-25 16:42:33 +00:00
|
|
|
dataclasses = {version="^0.7", python = "~3.6"}
|
2020-05-08 12:36:12 +00:00
|
|
|
pygments = "^2.6.0"
|
2020-02-22 20:04:20 +00:00
|
|
|
commonmark = "^0.9.0"
|
2020-05-08 12:36:12 +00:00
|
|
|
colorama = "^0.4.0"
|
2020-07-10 15:52:01 +00:00
|
|
|
ipywidgets = {version = "^7.5.1", optional = true}
|
2020-02-22 20:04:20 +00:00
|
|
|
|
2019-11-10 15:39:13 +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]
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry>=0.12"]
|
|
|
|
build-backend = "poetry.masonry.api"
|