Add file classification package

This commit is contained in:
Chris Kuehl 2015-08-10 17:32:18 -07:00
parent 2b22a36b1c
commit cebba0404d
7 changed files with 324 additions and 0 deletions

View file

@ -0,0 +1,6 @@
KNOWN_INTERPRETERS = [
('^python([23](\.[0-9]+)?)?$', ['python']),
('^(ba|da|tc|[ckz])?sh$', ['shell']),
('^ruby$', ['ruby']),
('^node(js)?$', ['javascript']),
]