build.py 283 B

123456789101112131415
  1. # Copyright (c) Microsoft Corporation.
  2. # Licensed under the MIT license.
  3. from tree_sitter import Language, Parser
  4. Language.build_library(
  5. # Store the library in the `build` directory
  6. 'my-languages.so',
  7. # Include one or more languages
  8. [
  9. 'tree-sitter-python',
  10. ]
  11. )