1# http://pyrocko.org - GPLv3 

2# 

3# The Pyrocko Developers, 21st Century 

4# ---|P------/S----------~Lg---------- 

5 

6from __future__ import absolute_import, print_function 

7 

8from pyrocko import squirrel as sq 

9 

10from .. import common 

11 

12 

13def setup(subparsers): 

14 p = common.add_parser( 

15 subparsers, 'init', 

16 help='Create local environment.') 

17 

18 return p 

19 

20 

21def call(parser, args): 

22 sq.init_environment()