summaryrefslogtreecommitdiffstats
path: root/identify/interpreters.py
blob: 96c1d9270e34b6e874d4aee59807ee20d06d3580 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# -*- coding: utf-8 -*-
from __future__ import absolute_import
from __future__ import unicode_literals

INTERPRETERS = {
    'bash': {'shell', 'bash'},
    'dash': {'shell', 'dash'},
    'node': {'javascript'},
    'nodejs': {'javascript'},
    'perl': {'perl'},
    'python': {'python'},
    'python2': {'python', 'python2'},
    'python3': {'python', 'python3'},
    'ruby': {'ruby'},
    'sh': {'shell', 'sh'},
    'tcsh': {'shell', 'tcsh'},
    'zsh': {'shell', 'zsh'},
}