1# http://pyrocko.org - GPLv3
2#
3# The Pyrocko Developers, 21st Century
4# ---|P------/S----------~Lg----------
6import os
7import re
9op = os.path
12modules = [m for m in os.listdir(op.dirname(__file__))
13 if re.search(r'[^_(dummy)].py', m)]
14AVAILABLE_BACKENDS = set([op.splitext(m)[0] for m in modules])