8000 Fix missing modules issues · baruchiro/botbuilder-python@7c88d9b · GitHub
[go: up one dir, main page]

Skip to content

Commit 7c88d9b

Browse files
committed
Fix missing modules issues
1 parent bfae7f2 commit 7c88d9b

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

libraries/botbuilder-ai/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
keywords=["BotBuilderDialogs", "bots", "ai", "botframework", "botbuilder"],
2929
long_description=package_info["__summary__"],
3030
license=package_info["__license__"],
31-
packages=["botbuilder.ai"],
31+
packages=["botbuilder.ai","botbuilder.ai.luis", "botbuilder.ai.qna" ],
3232
install_requires=REQUIRES,
3333
include_package_data=True,
3434
classifiers=[

libraries/botbuilder-dialogs/setup.py

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

77
REQUIRES = [
8-
'recognizers-date-time>=1.0.0.a1',
9-
'recognizers-number-with-unit>=1.0.0.a1',
10-
'recognizers-number>=1.0.0.a1',
11-
'recognizers-text>=1.0.0.a1',
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',
1212
'botbuilder-schema>=4.0.0.a6',
1313
'botframework-connector>=4.0.0.a6',
1414
'botbuilder-core>=4.0.0.a6']
@@ -33,7 +33,7 @@
3333
keywords=['BotBuilderDialogs', 'bots', 'ai', 'botframework', 'botbuilder'],
3434
long_description=package_info['__summary__'],
3535
license=package_info['__license__'],
36-
packages=['botbuilder.dialogs'],
36+
packages=['botbuilder.dialogs', 'botbuilder.dialogs.prompts', 'botbuilder.dialogs.choices'],
3737
install_requires=REQUIRES,
3838
tests_require=TEST_REQUIRES,
3939
include_package_data=True,

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_async",
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