12 changed files with 32 additions and 30 deletions
@ -1,10 +1,9 @@ |
|||
# flake8: noqa F401 |
|||
from alice.configparser import ConfigParser |
|||
from alice.exceptions import NonZeroRetcode |
|||
from alice.runnerfactory import Factory |
|||
from alice.runners.pythonrunner import PythonRunner |
|||
from alice.exceptions import NonZeroRetcode |
|||
from alice.exceptions import RunnerError |
|||
from alice.exceptions import ConfigException |
|||
from .configparser import ConfigParser |
|||
from .exceptions import NonZeroRetcode |
|||
from .runnerfactory import Factory |
|||
from .exceptions import NonZeroRetcode |
|||
from .exceptions import RunnerError |
|||
from .exceptions import ConfigException |
|||
|
|||
name = "alice" |
@ -1,3 +1,4 @@ |
|||
from alice.cli import main |
|||
import alice |
|||
|
|||
main() |
|||
if __name__ == '__main__': |
|||
alice.cli.main() |
|||
|
@ -1,3 +1,4 @@ |
|||
# flake8: noqa F401 |
|||
from alice.runners.pythonrunner import PythonRunner |
|||
from alice.runners.pypirunner import PyPiRunner |
|||
from .pythonrunner import PythonRunner |
|||
from .pypirunner import PyPiRunner |
|||
from .dockerrunner import DockerRunner |
|||
|
Loading…
Reference in new issue