Skip to content

Commit

Permalink
simple replacement for development purposes
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Fiers committed Nov 5, 2012
1 parent bf78868 commit cf076be
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions bin/moa
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#!/usr/bin/env python
"""Ultralight wrapper for the moa command
this command is only used when not working from a python setup.py
install.
"""

import os
import site

MOADIR = os.path.dirname(
os.path.dirname(
os.path.abspath(__file__)))
site.addsitedir(MOADIR)

import moa.cli.main

if __name__ == '__main__':
moa.cli.main.dispatch()

0 comments on commit cf076be

Please sign in to comment.