Packages

A Statistic Counter designed for simplicity and ease of use. Stats are rolled into time periods of your choice.

Current section

Files

Jump to
Raw

mix.exs

defmodule SimpleStatEx.Mixfile do
use Mix.Project
def project do
[
app: :simplestatex,
version: "0.1.4",
elixir: "~> 1.5",
start_permanent: Mix.env == :prod,
deps: deps(),
description: description(),
package: package()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ecto, ">= 2.2.0"},
{:timex, ">= 3.1.0"},
{:timex_ecto, "~> 3.2"},
{:ex_doc, "~> 0.16", only: :dev, runtime: false}
]
end
defp description() do
"A Statistic Counter designed for simplicity and ease of use. Stats are rolled into time periods of your choice."
end
defp package() do
[
licenses: ["MIT"],
maintainers: ["Tyler Pierce"],
files: ["lib", "mix.exs", "README.md", "test", "config", "priv"],
links: %{"GitHub" => "https://github.com/Tyler-pierce/simplestatex"},
source_url: "https://github.com/Tyler-pierce/simplestatex"
]
end
end