bots: Migrate source file for zulip-bot-shell to similar name.
This commit is contained in:
parent
cca1b7d679
commit
e0f3bd4143
|
@ -21,6 +21,6 @@ zulip_bots # This directory
|
||||||
│ ├───simple_lib.py # Used for terminal testing.
|
│ ├───simple_lib.py # Used for terminal testing.
|
||||||
│ ├───test_lib.py # Backbone for bot unit tests.
|
│ ├───test_lib.py # Backbone for bot unit tests.
|
||||||
│ ├───test_run.py # Unit tests for run.py
|
│ ├───test_run.py # Unit tests for run.py
|
||||||
│ └───terminal.py # Used to test bots in the command line.
|
│ └───bot_shell.py # Used to test bots in the command line.
|
||||||
└───setup.py # Script for packaging.
|
└───setup.py # Script for packaging.
|
||||||
```
|
```
|
||||||
|
|
|
@ -52,7 +52,7 @@ package_info = dict(
|
||||||
entry_points={
|
entry_points={
|
||||||
"console_scripts": [
|
"console_scripts": [
|
||||||
"zulip-run-bot=zulip_bots.run:main",
|
"zulip-run-bot=zulip_bots.run:main",
|
||||||
"zulip-bot-shell=zulip_bots.terminal:main",
|
"zulip-bot-shell=zulip_bots.bot_shell:main",
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
) # type: Dict[str, Any]
|
) # type: Dict[str, Any]
|
||||||
|
|
Loading…
Reference in a new issue