Skip to content

Commit

Permalink
Merge pull request #25 from BotBuilderCommunity/develop
Browse files Browse the repository at this point in the history
0.1.2
  • Loading branch information
garypretty authored Nov 24, 2019
2 parents 23fe5a3 + 5e73740 commit 6162dbf
Show file tree
Hide file tree
Showing 17 changed files with 10 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ The following dialogs are currently available;

| Name | Description | Sample | PIP |
| ---- | ----------- | ------- | --- |
| [@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 |
| [@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/) |
4 changes: 1 addition & 3 deletions libraries/botbuilder-community-dialogs-prompts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,11 @@

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.

> 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.
## Installation

You can install this library via PIP:

## Coming soon
pip install botbuilder-community-dialogs-prompts

## Number with Unit

Expand Down
4 changes: 2 additions & 2 deletions libraries/botbuilder-community-dialogs-prompts/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

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

with open(os.path.join(root, "source", "about.py")) as f:
with open(os.path.join(root, "botbuilder", "community", "dialogs", "prompts", "about.py")) as f:
package_info = {}
info = f.read()
exec(info, package_info)
Expand All @@ -32,7 +32,7 @@
long_description_content_type="text/markdown",
license=package_info["__license__"],
packages=[
"source",
"botbuilder.community.dialogs.prompts",
],
install_requires=REQUIRES + TESTS_REQUIRES,
tests_require=TESTS_REQUIRES,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import asyncio

current = pathlib.Path(__file__).parent.parent
libpath = current.joinpath("source")
libpath = current.joinpath("botbuilder").joinpath("community").joinpath("dialogs").joinpath("prompts")
sys.path.append(str(libpath))

from botbuilder.dialogs.prompts import (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import asyncio

current = pathlib.Path(__file__).parent.parent
libpath = current.joinpath("source")
libpath = current.joinpath("botbuilder").joinpath("community").joinpath("dialogs").joinpath("prompts")
sys.path.append(str(libpath))

from botbuilder.dialogs.prompts import (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import asyncio

current = pathlib.Path(__file__).parent.parent
libpath = current.joinpath("source")
libpath = current.joinpath("botbuilder").joinpath("community").joinpath("dialogs").joinpath("prompts")
sys.path.append(str(libpath))

from botbuilder.dialogs.prompts import (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import asyncio

current = pathlib.Path(__file__).parent.parent
libpath = current.joinpath("source")
libpath = current.joinpath("botbuilder").joinpath("community").joinpath("dialogs").joinpath("prompts")
sys.path.append(str(libpath))

from botbuilder.dialogs.prompts import (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import asyncio

current = pathlib.Path(__file__).parent.parent
libpath = current.joinpath("source")
libpath = current.joinpath("botbuilder").joinpath("community").joinpath("dialogs").joinpath("prompts")
sys.path.append(str(libpath))

from botbuilder.dialogs.prompts import (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import asyncio

current = pathlib.Path(__file__).parent.parent
libpath = current.joinpath("source")
libpath = current.joinpath("botbuilder").joinpath("community").joinpath("dialogs").joinpath("prompts")
sys.path.append(str(libpath))

from botbuilder.dialogs.prompts import (
Expand Down

0 comments on commit 6162dbf

Please # to comment.