File tree Expand file tree Collapse file tree 8 files changed +23
-5
lines changed
botbuilder-azure/botbuilder/azure Expand file tree Collapse file tree 8 files changed +23
-5
lines changed Original file line number Diff line number Diff line change 22# Bot Builder SDK v4 (Python) (Preview)
33
44[ ![ Build Status] ( https://travis-ci.org/Microsoft/botbuilder-python.svg?branch=master )] ( https://travis-ci.org/Microsoft/botbuilder-python )
5+ [ ![ Build status] ( https://fuselabs.visualstudio.com/SDK_v4/_apis/build/status/SDK_v4-Python-package-CI )] ( https://fuselabs.visualstudio.com/SDK_v4/_build/latest?definitionId=431 )
56[ ![ roadmap badge] ( https://img.shields.io/badge/visit%20the-roadmap-blue.svg )] ( https://github.com/Microsoft/botbuilder-python/wiki/Roadmap )
67
78This repository contains code for the Python version of the [ Microsoft Bot Builder SDK] ( https://github.com/Microsoft/botbuilder ) . The Bot Builder SDK v4 is the latest SDK for building bot applications. It is in ** Preview** state and is being actively developed.
Original file line number Diff line number Diff line change 11# Copyright (c) Microsoft Corporation. All rights reserved.
22# Licensed under the MIT License.
33
4+ import os
5+
46__title__ = 'botbuilder-azure'
5- __version__ = ' 4.0.0.a6'
7+ __version__ = os . environ [ "packageVersion" ] if "packageVersion" in os . environ else " 4.0.0.a6"
68__uri__ = 'https://www.github.com/Microsoft/botbuilder-python'
79__author__ = 'Microsoft'
810__description__ = 'Microsoft Bot Framework Bot Builder'
Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ BotBuilder-Core SDK for Python
77 :target: https://travis-ci.org/Microsoft/botbuilder-python
88 :align: right
99 :alt: Travis status for master branch
10+ .. image :: https://fuselabs.visualstudio.com/SDK_v4/_apis/build/status/SDK_v4-Python-package-CI?branchName=master
11+ :target: https://fuselabs.visualstudio.com/SDK_v4/_apis/build/status/SDK_v4-Python-package-CI
12+ :align: right
13+ :alt: Azure DevOps status for master branch
1014.. image :: https://badge.fury.io/py/botbuilder-core.svg
1115 :target: https://badge.fury.io/py/botbuilder-core
1216 :alt: Latest PyPI package version
Original file line number Diff line number Diff line change 11# Copyright (c) Microsoft Corporation. All rights reserved.
22# Licensed under the MIT License.
33
4+ import os
5+
46__title__ = 'botbuilder-core'
5- __version__ = ' 4.0.0.a6'
7+ __version__ = os . environ [ "packageVersion" ] if "packageVersion" in os . environ else " 4.0.0.a6"
68__uri__ = 'https://www.github.com/Microsoft/botbuilder-python'
79__author__ = 'Microsoft'
810__description__ = 'Microsoft Bot Framework Bot Builder'
Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ BotBuilder-Schema
77 :target: https://travis-ci.org/Microsoft/botbuilder-python
88 :align: right
99 :alt: Travis status for master branch
10+ .. image :: https://fuselabs.visualstudio.com/SDK_v4/_apis/build/status/SDK_v4-Python-package-CI?branchName=master
11+ :target: https://fuselabs.visualstudio.com/SDK_v4/_apis/build/status/SDK_v4-Python-package-CI
12+ :align: right
13+ :alt: Azure DevOps status for master branch
1014.. image :: https://badge.fury.io/py/botbuilder-schema.svg
1115 :target: https://badge.fury.io/py/botbuilder-schema
1216 :alt: Latest PyPI package version
Original file line number Diff line number Diff line change 11# Copyright (c) Microsoft Corporation. All rights reserved.
22# Licensed under the MIT License.
33
4+ import os
45from setuptools import setup
56
67NAME = "botbuilder-schema"
7- VERSION = "4.0.0.a6"
8+ VERSION = os . environ [ "packageVersion" ] if "packageVersion" in os . environ else "4.0.0.a6"
89REQUIRES = ["msrest==0.4.29" ]
910
1011setup (
Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ Microsoft Bot Framework Connector for Python
77 :target: https://travis-ci.org/Microsoft/botbuilder-python
88 :align: right
99 :alt: Travis status for master branch
10+ .. image :: https://fuselabs.visualstudio.com/SDK_v4/_apis/build/status/SDK_v4-Python-package-CI?branchName=master
11+ :target: https://fuselabs.visualstudio.com/SDK_v4/_apis/build/status/SDK_v4-Python-package-CI
12+ :align: right
13+ :alt: Azure DevOps status for master branch
1014.. image :: https://badge.fury.io/py/botframework-connector.svg
1115 :target: https://badge.fury.io/py/botframework-connector
1216 :alt: Latest PyPI package version
Original file line number Diff line number Diff line change 11# Copyright (c) Microsoft Corporation. All rights reserved.
22# Licensed under the MIT License.
3-
3+ import os
44from setuptools import setup
55
66NAME = "botframework-connector"
7- VERSION = "4.0.0.a6"
7+ VERSION = os . environ [ "packageVersion" ] if "packageVersion" in os . environ else "4.0.0.a6"
88REQUIRES = [
99 "msrest==0.4.29" ,
1010 "requests>=2.8.1" ,
You can’t perform that action at this time.
0 commit comments