Current section

Files

Jump to
Raw

mix.exs

defmodule StreamData.Mixfile do
use Mix.Project
@version "0.4.3"
@repo_url "https://github.com/whatyouhide/stream_data"
def project() do
[
app: :stream_data,
version: @version,
elixir: "~> 1.5",
start_permanent: Mix.env() == :prod,
deps: deps(),
# Docs
name: "StreamData",
docs: [
source_ref: "v#{@version}",
main: "StreamData",
source_url: @repo_url
],
# Hex
description: "Data generation and property-based testing for Elixir",
package: [
maintainers: ["Andrea Leopardi"],
licenses: ["Apache 2.0"],
links: %{"GitHub" => @repo_url}
]
]
end
def application() do
[
extra_applications: [],
env: [
initial_size: 1,
max_runs: 100,
max_run_time: :infinity,
max_shrinking_steps: 100
]
]
end
defp deps() do
[
{:ex_doc, "~> 0.19", only: :dev}
]
end
end