1

2

3

4

5

6

7

8

9

10

11

12

13

14

# http://pyrocko.org - GPLv3 

# 

# The Pyrocko Developers, 21st Century 

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

 

import os 

import re 

 

op = os.path 

 

 

modules = [m for m in os.listdir(op.dirname(__file__)) 

if re.search(r'[^_(dummy)].py', m)] 

AVAILABLE_BACKENDS = set([op.splitext(m)[0] for m in modules])