Current section
Files
Jump to
Current section
Files
stationary
mix.exs
mix.exs
defmodule Stationary.Mixfile do
use Mix.Project
def project do
[app: :stationary,
version: "1.0.0",
elixir: "~> 1.4",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
description: description(),
package: package(),
deps: deps(),
name: "Stationary",
source_url: "https://github.com/jarrodtaylor/stationary",
homepage_url: "http://stationary.blog",
docs: [main: "readme", extras: ["README.md"], output: "docs"]
]
end
def application, do: [extra_applications: []]
defp deps do
[{:cowboy, "~> 1.0.0"},
{:earmark, "~> 1.1.1"},
{:ex_doc, "~> 0.14", only: :dev},
{:plug, "~> 1.0"}]
end
defp description do
"""
Stationary generates static blogs from EEx templates and Markdown posts.
"""
end
defp package do
[name: :stationary,
files: ["lib", "mix.exs", "README*"],
maintainers: ["Jarrod Taylor"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/jarrodtaylor/stationary",
"Docs" => "http://stationary.blog"}]
end
end