From 63edde76482ee1207e444d2ba8241e4d681b5a66 Mon Sep 17 00:00:00 2001 From: mbasadi Date: Thu, 11 Jan 2024 10:58:33 -0500 Subject: [PATCH] add httpx packages to requirements --- notificationapi_python_server_sdk/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 13 ++++++++----- 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/notificationapi_python_server_sdk/__init__.py b/notificationapi_python_server_sdk/__init__.py index 8ab4abb..3b1b1f8 100644 --- a/notificationapi_python_server_sdk/__init__.py +++ b/notificationapi_python_server_sdk/__init__.py @@ -2,4 +2,4 @@ __author__ = """Sahand Seifi""" __email__ = "sahand.seifi@gmail.com" -__version__ = "1.0.0" +__version__ = "1.0.1" diff --git a/setup.cfg b/setup.cfg index 289d1cf..71dd4d5 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.0 +current_version = 1.0.1 commit = True tag = True diff --git a/setup.py b/setup.py index cabf66a..e92f6dc 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,10 @@ with open("README.md") as readme_file: readme = readme_file.read() -requirements = ["requests"] +requirements = [ + "requests", + "httpx>=0.24.0", +] setup_requirements = [ "pytest-runner", @@ -18,8 +21,8 @@ ] setup( - author="Sahand Seifi", - author_email="sahand.seifi@gmail.com", + author="Sahand Seifi, Mohammad Asadi", + author_email="sahand@notificationspi.com, mohammad@notificationspi.com", python_requires=">=3.6", classifiers=[ "Development Status :: 2 - Pre-Alpha", @@ -32,7 +35,7 @@ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", ], - description=" NotificationAPI SDK for server-side (back-end) python projects. ", + description="NotificationAPI SDK for server-side (back-end) Python projects.", install_requires=requirements, license="MIT license", long_description=readme, @@ -49,6 +52,6 @@ test_suite="tests", tests_require=test_requirements, url="https://github.com/notificationapi-com/notificationapi_python_server_sdk", - version="1.0.0", + version="1.0.1", zip_safe=False, )