mirror of
https://github.com/paul-nameless/tg
synced 2024-11-22 03:43:19 +00:00
31 lines
578 B
TOML
31 lines
578 B
TOML
[tool.black]
|
|
line-length = 79
|
|
|
|
[tool.isort]
|
|
line_length = 79
|
|
multi_line_output = 3
|
|
include_trailing_comma = true
|
|
|
|
[tool.poetry]
|
|
name = "tg"
|
|
version = "0.14.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]
|
|
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"
|