mirror of
https://github.com/YunoHost/moulinette.git
synced 2024-09-03 20:06:31 +02:00
Fix test + missing dependency to prompt-toolkit in setup.py
This commit is contained in:
parent
1f7bb1d54c
commit
c4b559cf6b
2 changed files with 1 additions and 2 deletions
|
@ -2,12 +2,10 @@
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
import getpass
|
|
||||||
import locale
|
import locale
|
||||||
import logging
|
import logging
|
||||||
import argparse
|
import argparse
|
||||||
import tempfile
|
import tempfile
|
||||||
from readline import insert_text, set_startup_hook
|
|
||||||
from collections import OrderedDict
|
from collections import OrderedDict
|
||||||
from datetime import date, datetime
|
from datetime import date, datetime
|
||||||
from subprocess import call
|
from subprocess import call
|
||||||
|
|
1
setup.py
1
setup.py
|
@ -33,6 +33,7 @@ install_deps = [
|
||||||
"toml",
|
"toml",
|
||||||
"gevent-websocket",
|
"gevent-websocket",
|
||||||
"bottle",
|
"bottle",
|
||||||
|
"prompt-toolkit",
|
||||||
]
|
]
|
||||||
|
|
||||||
test_deps = [
|
test_deps = [
|
||||||
|
|
Loading…
Reference in a new issue