rich/pyproject.toml

38 lines
1.0 KiB
TOML
Raw Normal View History

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-03-13 16:55:08 +00:00
version = "0.7.1"
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 :: 3 - Alpha",
"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",
]
2019-11-10 15:39:13 +00:00
[tool.poetry.dependencies]
2019-12-25 16:05:11 +00:00
python = "^3.6"
2019-12-16 19:34:27 +00:00
pprintpp = "^0.4.0"
2019-12-25 16:05:11 +00:00
typing-extensions = "^3.7.4"
2019-12-25 16:42:33 +00:00
dataclasses = {version="^0.7", python = "~3.6"}
2020-01-22 16:22:23 +00:00
colorama = "^0.4.3"
2020-02-22 20:04:20 +00:00
pygments = "^2.5.0"
commonmark = "^0.9.0"
2019-11-10 15:39:13 +00:00
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"