mirror of
https://github.com/paul-nameless/tg
synced 2024-11-22 03:43:19 +00:00
24 lines
520 B
TOML
24 lines
520 B
TOML
[tool.flit.metadata]
|
|
module = "tg"
|
|
dist-name = "tg"
|
|
description-file = "README.md"
|
|
author = "Paul Nameless"
|
|
author-email = "reacsdas@gmail.com"
|
|
home-page = 'https://github.com/paul-nameless/tg'
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.8",
|
|
]
|
|
requires-python = ">=3.8"
|
|
requires = ['python-telegram==0.12.0']
|
|
|
|
[tool.flit.scripts]
|
|
tg = "tg.main:main"
|
|
|
|
[tool.black]
|
|
line-length = 79
|
|
|
|
[tool.isort]
|
|
line_length = 79
|
|
multi_line_output = 3
|
|
include_trailing_comma = true
|