2019-02-20 19:15:43 +01:00
|
|
|
[tool.flit.metadata]
|
|
|
|
module = "tg"
|
|
|
|
dist-name = "tg"
|
2020-07-06 12:09:26 +08:00
|
|
|
description-file = "readme.md"
|
2019-02-20 19:15:43 +01:00
|
|
|
author = "Paul Nameless"
|
2020-05-31 15:30:16 +08:00
|
|
|
author-email = "reacsdas@gmail.com"
|
2019-02-20 19:15:43 +01:00
|
|
|
home-page = 'https://github.com/paul-nameless/tg'
|
|
|
|
classifiers = [
|
|
|
|
"Programming Language :: Python :: 3",
|
2020-06-09 03:53:11 +08:00
|
|
|
"Programming Language :: Python :: 3.8",
|
2021-04-21 14:54:49 +03:00
|
|
|
"Programming Language :: Python :: 3.9",
|
2019-02-20 19:15:43 +01:00
|
|
|
]
|
2020-06-09 03:53:11 +08:00
|
|
|
requires-python = ">=3.8"
|
2021-04-21 14:54:49 +03:00
|
|
|
requires = ['python-telegram==0.14.0']
|
2019-02-20 19:15:43 +01:00
|
|
|
|
|
|
|
[tool.flit.scripts]
|
2020-07-21 14:03:52 +02:00
|
|
|
tg = "tg.__main__:main"
|
2020-05-04 15:01:24 +08:00
|
|
|
|
|
|
|
[tool.black]
|
|
|
|
line-length = 79
|
2020-06-09 03:55:33 +08:00
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
line_length = 79
|
|
|
|
multi_line_output = 3
|
2020-06-28 00:26:47 +03:00
|
|
|
include_trailing_comma = true
|