diff --git a/README.md b/README.md index 7bc31ea..3116e78 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,4 @@ # lifeguard-telegram - - -[![SourceLevel](https://app.sourcelevel.io/github/LifeguardSystem/-/lifeguard-telegram.svg)](https://app.sourcelevel.io/github/LifeguardSystem/-/lifeguard-telegram) - - Lifeguard Telegram Integration diff --git a/requirements.dev.txt b/requirements.dev.txt index 17cb6e7..1b820b7 100644 --- a/requirements.dev.txt +++ b/requirements.dev.txt @@ -1,3 +1,3 @@ -black==20.8b1 +black==23.3.0 mutmut==2.1.0 nose2==0.9.2 diff --git a/requirements.txt b/requirements.txt index f98ae6e..9ec25bb 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ -lifeguard==0.0.27 +lifeguard==1.1.0 python-telegram-bot==13.1 diff --git a/setup.py b/setup.py index d2e5d85..9559b04 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,12 @@ from setuptools import find_packages, setup +from pathlib import Path + +this_directory = Path(__file__).parent +long_description = (this_directory / "README.md").read_text() setup( name="lifeguard-telegram", - version="0.0.4", + version="1.0.0", url="https://github.com/LifeguardSystem/lifeguard-telegram", author="Diego Rubin", author_email="contact@diegorubin.dev", @@ -10,7 +14,17 @@ scripts=[], include_package_data=True, description="Lifeguard integration with Telegram", + long_description=long_description, + long_description_content_type="text/markdown", install_requires=["lifeguard", "python-telegram-bot"], - classifiers=["Development Status :: 3 - Alpha"], + classifiers=[ + "Development Status :: 5 - Production/Stable", + "Environment :: Plugins", + "Intended Audience :: Developers", + "Intended Audience :: Information Technology", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Topic :: System :: Monitoring", + ], packages=find_packages(), )