Current section

Files

Jump to
crawlberg mix.exs
Raw

mix.exs

defmodule Crawlberg.MixProject do
use Mix.Project
def project do
[
app: :crawlberg,
version: "0.0.1",
elixir: "~> 1.14",
description: "Reserved name for crawlberg — a high-performance web crawling and scraping engine.",
package: package(),
deps: []
]
end
defp package do
[
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/xberg-io/crawlberg"},
files: ~w(lib mix.exs README.md LICENSE)
]
end
end