integrations/trello: Make the zulip_trello script self-contained.

A few users have complained about how hard it is to find the
Trello script on their systems after installing the `zulip`
package. Rishi and I decided that we should instead just ask
the users to download the script directly and run it without
having to install the `zulip` package.

This commit also ensures that the script can be run on both
py2 and py3.
This commit is contained in:
Eeshan Garg 2018-09-14 18:01:13 -02:30
parent 5210e79dbd
commit 71a15bd89e
3 changed files with 19 additions and 5 deletions

View file

@ -29,6 +29,10 @@ exclude = [
"zulip_bots/zulip_bots/terminal.py",
"zulip_bots/zulip_bots/simple_lib.py",
"zulip_bots/zulip_bots/tests/test_lib.py",
# Excluded because this is a self-contained script
# we ask our users to download and run directly and
# py2 and py3 compatibility is required.
"zulip/integrations/trello/zulip_trello.py",
"tools",
]