~hopem/maas-deployer/lp1480263

« back to all changes in this revision

Viewing changes to maas_deployer/vmaas/maasclient/apidriver.py

[hopem,r=billy-olsen] Prepare source code for packaging.

Prepare the source code for packaging by:
 - adding maas_deployer namespace directory
 - modify README content
 - add setup.py to use with setuptools
 - remove setup.sh as dependencies should come with package

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
import logging
8
8
 
9
9
from apiclient import maas_client as maas
10
 
from vmaas.maasclient.driver import MAASDriver
11
 
from vmaas.maasclient.driver import Response
 
10
from maas_deployer.vmaas.maasclient.driver import MAASDriver
 
11
from maas_deployer.vmaas.maasclient.driver import Response
12
12
from urllib2 import HTTPError
13
13
 
14
14
log = logging.getLogger('vmaas.main')