tg/pyproject.toml

32 lines
578 B
TOML
Raw Normal View History

2020-05-04 07:01:24 +00:00
[tool.black]
line-length = 79
[tool.isort]
line_length = 79
multi_line_output = 3
2020-06-27 21:26:47 +00:00
include_trailing_comma = true
[tool.poetry]
name = "tg"
2021-04-24 16:18:38 +00:00
version = "0.15.0"
description = "Terminal Telegram client"
authors = ["Paul Nameless <reacsdas@gmail.com>"]
license = "Unlicense"
[tool.poetry.dependencies]
python = "^3.8"
python-telegram = "0.14.0"
[tool.poetry.dev-dependencies]
2021-04-23 17:49:22 +00:00
black = "20.8b1"
flake8 = "3.8.4"
isort = "5.6.2"
mypy = "0.812"
[tool.poetry.scripts]
tg = "tg.__main__:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"