Skip to content

Commit

Permalink
chore: updating deps
Browse files Browse the repository at this point in the history
  • Loading branch information
diegorubin committed May 26, 2023
1 parent 21504de commit fe90fb3
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 9 deletions.
5 changes: 0 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -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

2 changes: 1 addition & 1 deletion requirements.dev.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
black==20.8b1
black==23.3.0
mutmut==2.1.0
nose2==0.9.2
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
lifeguard==0.0.27
lifeguard==1.1.0
python-telegram-bot==13.1
18 changes: 16 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,30 @@
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="[email protected]",
license="GPL2",
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(),
)

0 comments on commit fe90fb3

Please sign in to comment.