rich/pyproject.toml

21 lines
535 B
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"
version = "0.2.2"
description = "Render rich text, tables, 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"
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"}
2019-11-10 15:39:13 +00:00
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"