Skip to content

Commit 63ce8a1

Browse files
authored
Merge pull request #13 from notificationapi-com/SdluTS35/1695-add-dependencies-python-package
add httpx packages to requirements
2 parents b1e9fcd + 63edde7 commit 63ce8a1

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

notificationapi_python_server_sdk/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
__author__ = """Sahand Seifi"""
44
__email__ = "[email protected]"
5-
__version__ = "1.0.0"
5+
__version__ = "1.0.1"

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.0.0
2+
current_version = 1.0.1
33
commit = True
44
tag = True
55

setup.py

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@
77
with open("README.md") as readme_file:
88
readme = readme_file.read()
99

10-
requirements = ["requests"]
10+
requirements = [
11+
"requests",
12+
"httpx>=0.24.0",
13+
]
1114

1215
setup_requirements = [
1316
"pytest-runner",
@@ -18,8 +21,8 @@
1821
]
1922

2023
setup(
21-
author="Sahand Seifi",
22-
author_email="sahand.seifi@gmail.com",
24+
author="Sahand Seifi, Mohammad Asadi",
25+
author_email="sahand@notificationspi.com, mohammad@notificationspi.com",
2326
python_requires=">=3.6",
2427
classifiers=[
2528
"Development Status :: 2 - Pre-Alpha",
@@ -32,7 +35,7 @@
3235
"Programming Language :: Python :: 3.8",
3336
"Programming Language :: Python :: 3.9",
3437
],
35-
description=" NotificationAPI SDK for server-side (back-end) python projects. ",
38+
description="NotificationAPI SDK for server-side (back-end) Python projects.",
3639
install_requires=requirements,
3740
license="MIT license",
3841
long_description=readme,
@@ -49,6 +52,6 @@
4952
test_suite="tests",
5053
tests_require=test_requirements,
5154
url="https://github.com/notificationapi-com/notificationapi_python_server_sdk",
52-
version="1.0.0",
55+
version="1.0.1",
5356
zip_safe=False,
5457
)

0 commit comments

Comments
 (0)