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_subcommand(subparsers): 

14 return common.add_parser( 

15 subparsers, 'init', 

16 help='Create local environment.') 

17 

18 

19def setup(parser): 

20 pass 

21 

22 

23def call(parser, args): 

24 sq.init_environment()