Skip to content
This repository has been archived by the owner on May 2, 2023. It is now read-only.

Commit

Permalink
imagneto executable
Browse files Browse the repository at this point in the history
  • Loading branch information
maticrivo committed Mar 11, 2015
1 parent 1495894 commit ca4a78b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
7 changes: 6 additions & 1 deletion imagneto.py → imagneto
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
import sys
from IPython import embed
from magneto.magneto import Magneto


def stop():
m.server.stop()


if __name__ == '__main__':
args = sys.argv[1:]
Magneto.configure(*args)
m = magneto = Magneto.instance()
m = magneto = Magneto.instance()

embed()
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='magneto',
version='0.1.2',
version='0.1.3',
description='Magneto - Command your droids.',
author='EverythingMe',
author_email='automation@everything.me',
Expand All @@ -13,7 +13,8 @@
'pytest-ordering',
'uiautomator',
'futures',
'coloredlogs'
'coloredlogs',
'IPython'
],

entry_points={
Expand Down

0 comments on commit ca4a78b

Please sign in to comment.