diff --git a/.gitignore b/.gitignore index 0bf0832..98ea5cc 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,6 @@ __pycache__/ dist/ *.egg-info/ .coverage +build/ +setup.cfg +tg_logger.toml diff --git a/README.md b/README.md index 86fbbbd..53774ca 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..0792c86 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[metadata] +license_files = LICENSE \ No newline at end of file diff --git a/setup.py b/setup.py index 3343864..384acc9 100644 --- a/setup.py +++ b/setup.py @@ -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', )