Packages

A comprehensive Natural Language Processing library for Elixir featuring stemming, tokenization, ranking algorithms (TF-IDF, BM25), similarity metrics, stopword filtering, n-grams, and text statistics. Inspired by NLTK and designed for idiomatic Elixir code.

Current section

Files

Jump to
ex_nlp mix.exs
Raw

mix.exs

defmodule ExNlp.MixProject do
use Mix.Project
@version "0.1.0"
@source_url "https://github.com/gawryco/ex_nlp"
def project do
[
app: :ex_nlp,
version: @version,
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package(),
docs: [
extras: ["README.md"],
main: "readme",
source_url: @source_url
]
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:ex_doc, "~> 0.31", only: :dev, runtime: false},
{:benchee, "~> 1.0", only: :dev}
]
end
defp description do
"""
A comprehensive Natural Language Processing library for Elixir featuring
stemming, tokenization, ranking algorithms (TF-IDF, BM25), similarity metrics,
stopword filtering, n-grams, and text statistics. Inspired by NLTK and designed
for idiomatic Elixir code.
"""
end
defp package do
[
licenses: ["MIT"],
links: %{"GitHub" => @source_url}
]
end
end