Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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__ = "sahand.seifi@gmail.com"
__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,
)