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

python package architecture

This commit is contained in:
Chernykh Vladimir
2021-02-03 19:41:29 +03:00
parent 3c171f8cfb
commit 34e7761bcf
4 changed files with 28 additions and 5 deletions

16
setup.py Normal file
View File

@ -0,0 +1,16 @@
from setuptools import setup, find_packages
setup(
name="tg_logger",
version="1.1",
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=[
"pytelegrambotapi==3.7.6",
]
)