diff --git a/azure/durable_functions/__init__.py b/azure/durable_functions/__init__.py index 5e9f4e9c..e1bb4e58 100644 --- a/azure/durable_functions/__init__.py +++ b/azure/durable_functions/__init__.py @@ -74,8 +74,8 @@ def validate_extension_bundles(): try: # disabling linter on this line because it fails to recognize the conditional export - from .decorators.durable_app import (DFApp, BluePrint) # noqa + from .decorators.durable_app import (DFApp, Blueprint) # noqa __all__.append('DFApp') - __all__.append('BluePrint') + __all__.append('Blueprint') except ModuleNotFoundError: pass diff --git a/azure/durable_functions/decorators/durable_app.py b/azure/durable_functions/decorators/durable_app.py index 5219be39..f5aede77 100644 --- a/azure/durable_functions/decorators/durable_app.py +++ b/azure/durable_functions/decorators/durable_app.py @@ -11,8 +11,8 @@ from functools import wraps -class BluePrint(TriggerApi, BindingApi): - """Durable Functions (DF) blueprint container. +class Blueprint(TriggerApi, BindingApi): + """Durable Functions (DF) Blueprint container. It allows functions to be declared via trigger and binding decorators, but does not automatically index/register these functions. @@ -232,7 +232,7 @@ def decorator(): return wrap -class DFApp(BluePrint, FunctionRegister): +class DFApp(Blueprint, FunctionRegister): """Durable Functions (DF) app. Exports the decorators required to declare and index DF Function-types. diff --git a/setup.py b/setup.py index a3dcbfab..83732a5f 100644 --- a/setup.py +++ b/setup.py @@ -34,6 +34,10 @@ def run(self, *args, **kwargs): ]), use_scm_version=True, setup_requires=['setuptools_scm'], + author="Azure Functions team at Microsoft Corp.", + author_email="azurefunctions@microsoft.com", + keywords="azure functions azurefunctions python serverless workflows durablefunctions", + url="https://github.com/Azure/azure-functions-durable-python", description='Durable Functions For Python', long_description=long_description, long_description_content_type="text/markdown",