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 

10 

11headline = 'Create local environment.' 

12 

13 

14def make_subparser(subparsers): 

15 return subparsers.add_parser( 

16 'init', 

17 help=headline, 

18 description=headline) 

19 

20 

21def setup(parser): 

22 pass 

23 

24 

25def run(parser, args): 

26 sq.init_environment()