summaryrefslogtreecommitdiffstats
path: root/identify/interpreters.py
diff options
context:
space:
mode:
Diffstat (limited to 'identify/interpreters.py')
-rw-r--r--identify/interpreters.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/identify/interpreters.py b/identify/interpreters.py
new file mode 100644
index 0000000..96c1d92
--- /dev/null
+++ b/identify/interpreters.py
@@ -0,0 +1,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'},
+}