8000 Merge pull request #161 from Microsoft/daveta-fix-packages · rsliang/botbuilder-python@f0844b4 · GitHub
[go: up one dir, main page]

Skip to content

Commit f0844b4

Browse files
authored
Merge pull request microsoft#161 from Microsoft/daveta-fix-packages
Make dialogs refer to Recognizers temporary packages
2 parents 6dc0440 + c88f1f0 commit f0844b4

File tree

4 files changed

+16
-6
lines changed

4 files changed

+16
-6
lines changed

libraries/botbuilder-applicationinsights/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from setuptools import setup
66

77
REQUIRES = [
8-
'applicationinsights >=0.11.9',
8+
'applicationinsights>=0.11.9',
99
'botbuilder-schema>=4.0.0.a6',
1010
'botframework-connector>=4.0.0.a6',
1111
'botbuilder-core>=4.0.0.a6'
@@ -14,7 +14,7 @@
1414
'aiounittest>=1.1.0',
1515
'django>=2.2', # For samples
1616
'djangorestframework>=3.9.2', # For samples
17-
'flask>-1.0.2' # For samples
17+
'flask>=1.0.2' # For samples
1818
]
1919

2020
root = os.path.abspath(os.path.dirname(__file__))

libraries/botbuilder-dialogs/setup.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
from setuptools import setup
66

77
REQUIRES = [
8+
'recognizers-date-time>=1.0.0a1',
9+
'recognizers-number-with-unit>=1.0.0a1',
10+
'recognizers-number>=1.0.0a1',
11+
'recognizers-text>=1.0.0a1',
812
'botbuilder-schema>=4.0.0.a6',
913
'botframework-connector>=4.0.0.a6',
1014
'botbuilder-core>=4.0.0.a6']
@@ -29,8 +33,8 @@
2933
keywords=['BotBuilderDialogs', 'bots', 'ai', 'botframework', 'botbuilder'],
3034
long_description=package_info['__summary__'],
3135
license=package_info['__license__'],
32-
packages=['botbuilder.dialogs'],
33-
install_requires=REQUIRES + TEST_REQUIRES,
36+
packages=['botbuilder.dialogs', 'botbuilder.dialogs.prompts', 'botbuilder.dialogs.choices'],
37+
install_requires=REQUIRES,
3438
tests_require=TEST_REQUIRES,
3539
include_package_data=True,
3640
classifiers=[

libraries/botbuilder-schema/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
setup(
1212
name=NAME,
1313
version=VERSION,
14-
description="BotBouilder Schema",
14+
description="BotBuilder Schema",
1515
author="Microsoft",
1616
url="https://github.com/Microsoft/botbuilder-python",
1717
keywords=["BotBuilderSchema", "bots","ai", "botframework", "botbuilder"],

libraries/botframework-connector/setup.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,13 @@
2424
"botframework.connector.auth",
2525
"botframework.connector.async_mixin",
2626
"botframework.connector.operations",
27-
"botframework.connector.models"
27+
"botframework.connector.models",
28+
"botframework.connector.aio",
29+
"botframework.connector.aio.operations_asyn 5EFC c",
30+
"botframework.connector.token_api",
31+
"botframework.connector.token_api.aio",
32+
"botframework.connector.token_api.models",
33+
"botframework.connector.token_api.operations"
2834
],
2935
include_package_data=True,
3036
long_description="Microsoft Bot Framework Bot Builder SDK for Python.",

0 commit comments

Comments
 (0)
0