mirror of
https://github.com/paul-nameless/tg
synced 2024-11-22 11:53:08 +00:00
29585ae972
* Update README * Add docker for testing and it is a fast way to try our client Co-authored-by: Alex <lightme16@users.noreply.github.com>
24 lines
No EOL
519 B
TOML
24 lines
No EOL
519 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 |