Packages
lumis_wasm_python
0.26.3
Tree-sitter parser and queries for python, compiled to WASM for Lumis
Current section
Files
Jump to
Current section
Files
lumis_wasm_python
mix.exs
mix.exs
defmodule LumisWasmPython.MixProject do
use Mix.Project
# Auto-generated by Lumis — do not edit.
def project do
[
app: :lumis_wasm_python,
version: "0.26.3",
elixir: "~> 1.15",
description: "Tree-sitter parser and queries for python, compiled to WASM for Lumis",
package: package()
]
end
def application, do: []
defp package do
[
maintainers: ["Leandro Pereira"],
licenses: ["MIT"],
links: %{
"Lumis" => "https://lumis.sh",
"GitHub" => "https://github.com/leandrocp/lumis",
"Grammar" => "https://github.com/ericmj/tree-sitter-python.git"
},
files: ~w[mix.exs priv README.md LICENSE]
]
end
end