forked from paul-nameless/tg
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (29 loc) · 713 Bytes
/
pyproject.toml
File metadata and controls
35 lines (29 loc) · 713 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[tool.poetry]
name = "tg"
version = "0.19.0"
description = "Terminal Telegram client"
authors = ["Paul Nameless <reacsdas@gmail.com>"]
license = "Unlicense"
packages = [{ include = "tg"}]
readme = "readme.md"
homepage = "https://github.com/paul-nameless/tg"
repository = "https://github.com/paul-nameless/tg"
[tool.poetry.dependencies]
python = "^3.8"
python-telegram = "0.18.0"
[tool.poetry.dev-dependencies]
black = "*"
flake8 = "*"
isort = "*"
mypy = "*"
[tool.poetry.scripts]
tg = "tg.__main__:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 79
[tool.isort]
line_length = 79
multi_line_output = 3
include_trailing_comma = true