blob: b8d1c7c8a230251424e88ac994ea96ddd5305132 [file] [log] [blame]
defmodule Meck.Mixfile do
use Mix.Project
def project do
[
app: :meck,
version: "0.8.5",
description: description,
package: package,
deps: [],
]
end
defp description do
"""
A mocking framework for Erlang
"""
end
defp package do
[
files: [
"Makefile",
"rebar.config",
"test.config",
"src",
"test/*.erl",
"test/cover_test_module.dontcompile",
"test/include",
"README.md",
"LICENSE",
"CHANGELOG",
],
maintainers: [
"Adam Lindberg",
],
licenses: [
"Apache 2.0",
],
links: %{
"GitHub" => "https://github.com/eproxus/meck",
},
]
end
end