1
0
mirror of https://github.com/otter18/tg_logger.git synced 2025-06-18 21:47:37 +02:00

package meta is added

This commit is contained in:
Chernykh Vladimir
2021-02-03 20:57:17 +03:00
parent dd76f85e1c
commit b455a023d9
4 changed files with 14 additions and 1 deletions

3
.gitignore vendored
View File

@ -3,3 +3,6 @@ __pycache__/
dist/
*.egg-info/
.coverage
build/
setup.cfg
tg_logger.toml

View File

@ -1,5 +1,7 @@
# ![tg_logo](https://i.ibb.co/ftBZY9z/telegram-icon.png) tg_logger tool
[![](https://img.shields.io/pypi/v/tg-logger.svg)](https://pypi.org/project/tg-logger/)
[![](https://img.shields.io/pypi/pyversions/tg-logger.svg)](https://pypi.org/project/tg-logger/)
[![](https://img.shields.io/pypi/l/tg-logger.svg)](https://pypi.org/project/tg-logger/)
bridging python logging and user files to tg bot
## Example

2
setup.cfg Normal file
View File

@ -0,0 +1,2 @@
[metadata]
license_files = LICENSE

View File

@ -12,5 +12,11 @@ setup(
packages=find_packages(),
install_requires=[
"pyTelegramBotAPI==3.7.6",
]
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)