diff --git a/libraries/botframework-connector/setup.py b/libraries/botframework-connector/setup.py index 6e5057037..c170aec0f 100644 --- a/libraries/botframework-connector/setup.py +++ b/libraries/botframework-connector/setup.py @@ -1,10 +1,12 @@ # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. import os + from setuptools import setup NAME = "botframework-connector" -VERSION = os.environ["packageVersion"] if "packageVersion" in os.environ else "4.10.0" +VERSION = os.environ[ + "packageVersion"] if "packageVersion" in os.environ else "4.10.0" REQUIRES = [ "msrest==0.6.10", "requests==2.23.0", @@ -26,7 +28,9 @@ description="Microsoft Bot Framework Bot Builder SDK for Python.", author="Microsoft", url="https://www.github.com/Microsoft/botbuilder-python", - keywords=["BotFrameworkConnector", "bots", "ai", "botframework", "botbuilder"], + keywords=[ + "BotFrameworkConnector", "bots", "ai", "botframework", "botbuilder" + ], install_requires=REQUIRES, packages=[ "botframework.connector",