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