Skip to content

Commit

Permalink
add httpx packages to requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
mbasadi committed Jan 11, 2024
1 parent b1e9fcd commit 63edde7
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion notificationapi_python_server_sdk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__author__ = """Sahand Seifi"""
__email__ = "[email protected]"
__version__ = "1.0.0"
__version__ = "1.0.1"
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.0.0
current_version = 1.0.1
commit = True
tag = True

Expand Down
13 changes: 8 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand All @@ -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,
Expand All @@ -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,
)

0 comments on commit 63edde7

Please sign in to comment.