Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4c57790

Browse files
authoredJul 11, 2023
develop ff-python based on ofn v1beta2 (#3)
* develop ff-python based on ofn v1beta2 Signed-off-by: laminar <[email protected]> * add exception_handler and logger Signed-off-by: laminar <[email protected]> * add user_context Signed-off-by: laminar <[email protected]> * adjust class name Signed-off-by: laminar <[email protected]> * add license header Signed-off-by: laminar <[email protected]> * Add check for function signature Signed-off-by: laminar <[email protected]> * adjust http trigger Signed-off-by: laminar <[email protected]> * fix Signed-off-by: laminar <[email protected]> * fix Signed-off-by: laminar <[email protected]> --------- Signed-off-by: laminar <[email protected]>
1 parent c011260 commit 4c57790

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+903
-1151
lines changed
 

‎setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ line_length = 88
77
lines_between_types = 1
88
combine_as_imports = True
99
default_section = THIRDPARTY
10-
known_first_party = functions_framework, google.cloud.functions
10+
known_first_party = functions_framework

‎setup.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,16 +46,19 @@
4646
],
4747
keywords="functions-framework",
4848
packages=find_packages(where="src"),
49-
namespace_packages=["google", "google.cloud"],
5049
package_dir={"": "src"},
5150
python_requires=">=3.5, <4",
5251
install_requires=[
52+
"grpcio==1.54.2",
5353
"flask>=1.0,<3.0",
5454
"click>=7.0,<9.0",
55-
"watchdog>=1.0.0,<2.0.0",
55+
"uvicorn>=0.22.0",
5656
"gunicorn>=19.2.0,<21.0; platform_system!='Windows'",
5757
"cloudevents>=1.2.0,<2.0.0",
58-
"dapr>=1.6.0",
58+
"dapr>=1.10.0",
59+
"aiohttp==3.8.4",
60+
"dapr-ext-grpc>=1.10.0",
61+
"dapr-ext-fastapi>=1.10.0"
5962
],
6063
entry_points={
6164
"console_scripts": [

0 commit comments

Comments
 (0)
Please sign in to comment.