2021-02-03 19:41:29 +03:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name="tg_logger",
|
2021-12-31 10:31:39 +03:00
|
|
|
version="3.3",
|
2021-02-03 19:41:29 +03:00
|
|
|
description="A tool to bridge python logging and user files to telegram bot",
|
|
|
|
long_description=open("README.md").read(),
|
|
|
|
long_description_content_type="text/markdown",
|
|
|
|
author="ChernV (otter18)",
|
|
|
|
author_email="vchern185@gmail.com",
|
|
|
|
url="https://github.com/otter18/tg_logger",
|
|
|
|
packages=find_packages(),
|
|
|
|
install_requires=[
|
2021-12-31 10:31:39 +03:00
|
|
|
"pyTelegramBotAPI>=3.7.6",
|
2021-02-03 20:57:17 +03:00
|
|
|
],
|
|
|
|
classifiers=[
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
],
|
|
|
|
python_requires='>=3.6',
|
2021-02-03 19:41:29 +03:00
|
|
|
)
|