Skip to content

Commit 6162dbf

Browse files
authored
Merge pull request #25 from BotBuilderCommunity/develop
0.1.2
2 parents 23fe5a3 + 5e73740 commit 6162dbf

17 files changed

+10
-12
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ The following dialogs are currently available;
1313

1414
| Name | Description | Sample | PIP |
1515
| ---- | ----------- | ------- | --- |
16-
| [@botbuildercommunity/dialog-prompts](libraries/botbuilder-community-dialogs-prompts/README.md) | A variety of prompts using the [Microsoft Recognizers Text](https://github.com/microsoft/Recognizers-Text) suite, such as currency, temperature, age and dimension. | coming soon | coming soon |
16+
| [@botbuildercommunity/dialog-prompts](libraries/botbuilder-community-dialogs-prompts/README.md) | A variety of prompts using the [Microsoft Recognizers Text](https://github.com/microsoft/Recognizers-Text) suite, such as currency, temperature, age and dimension. | coming soon | [botbuilder-community-dialogs-prompts](https://pypi.org/project/botbuilder-community-dialogs-prompts/) |

libraries/botbuilder-community-dialogs-prompts/README.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,11 @@
22

33
This is a (currently experimental) suite of dialog prompts that uses Microsoft's recognizer text suite to recognize certain types of input during a dialog prompt. Microsoft's Bot Framework team has implemented a handful of prompts using recognizers from the recognizer text suite. This library is meant to fill the gaps.
44

5-
> Currently, this library and subsequent PIP are experimental. Please use at your own risk. Feel free to test, debug, and submit pull requests if you come across any issues.
6-
75
## Installation
86

97
You can install this library via PIP:
108

11-
## Coming soon
9+
pip install botbuilder-community-dialogs-prompts
1210

1311
## Number with Unit
1412

libraries/botbuilder-community-dialogs-prompts/setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
root = os.path.abspath(os.path.dirname(__file__))
1515

16-
with open(os.path.join(root, "source", "about.py")) as f:
16+
with open(os.path.join(root, "botbuilder", "community", "dialogs", "prompts", "about.py")) as f:
1717
package_info = {}
1818
info = f.read()
1919
exec(info, package_info)
@@ -32,7 +32,7 @@
3232
long_description_content_type="text/markdown",
3333
license=package_info["__license__"],
3434
packages=[
35-
"source",
35+
"botbuilder.community.dialogs.prompts",
3636
],
3737
install_requires=REQUIRES + TESTS_REQUIRES,
3838
tests_require=TESTS_REQUIRES,

libraries/botbuilder-community-dialogs-prompts/test/test_email_prompt.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import asyncio
66

77
current = pathlib.Path(__file__).parent.parent
8-
libpath = current.joinpath("source")
8+
libpath = current.joinpath("botbuilder").joinpath("community").joinpath("dialogs").joinpath("prompts")
99
sys.path.append(str(libpath))
1010

1111
from botbuilder.dialogs.prompts import (

libraries/botbuilder-community-dialogs-prompts/test/test_guid_prompt.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import asyncio
66

77
current = pathlib.Path(__file__).parent.parent
8-
libpath = current.joinpath("source")
8+
libpath = current.joinpath("botbuilder").joinpath("community").joinpath("dialogs").joinpath("prompts")
99
sys.path.append(str(libpath))
1010

1111
from botbuilder.dialogs.prompts import (

libraries/botbuilder-community-dialogs-prompts/test/test_internet_protocol_prompt.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import asyncio
66

77
current = pathlib.Path(__file__).parent.parent
8-
libpath = current.joinpath("source")
8+
libpath = current.joinpath("botbuilder").joinpath("community").joinpath("dialogs").joinpath("prompts")
99
sys.path.append(str(libpath))
1010

1111
from botbuilder.dialogs.prompts import (

libraries/botbuilder-community-dialogs-prompts/test/test_number_with_type_prompt.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import asyncio
66

77
current = pathlib.Path(__file__).parent.parent
8-
libpath = current.joinpath("source")
8+
libpath = current.joinpath("botbuilder").joinpath("community").joinpath("dialogs").joinpath("prompts")
99
sys.path.append(str(libpath))
1010

1111
from botbuilder.dialogs.prompts import (

libraries/botbuilder-community-dialogs-prompts/test/test_number_with_unit_prompt.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import asyncio
66

77
current = pathlib.Path(__file__).parent.parent
8-
libpath = current.joinpath("source")
8+
libpath = current.joinpath("botbuilder").joinpath("community").joinpath("dialogs").joinpath("prompts")
99
sys.path.append(str(libpath))
1010

1111
from botbuilder.dialogs.prompts import (

libraries/botbuilder-community-dialogs-prompts/test/test_phone_prompt.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import asyncio
66

77
current = pathlib.Path(__file__).parent.parent
8-
libpath = current.joinpath("source")
8+
libpath = current.joinpath("botbuilder").joinpath("community").joinpath("dialogs").joinpath("prompts")
99
sys.path.append(str(libpath))
1010

1111
from botbuilder.dialogs.prompts import (

0 commit comments

Comments
 (0)