Packages

Bindings for the D-Bus IPC protocol.

Current section

Files

Jump to
dbux mix.exs
Raw

mix.exs

defmodule DBux.Mixfile do
use Mix.Project
def project do
[app: :dbux,
version: "1.0.0",
elixir: "~> 1.0",
description: description,
package: package,
test_coverage: [tool: ExCoveralls, test_task: "espec"],
preferred_cli_env: [espec: :test, "coveralls": :test, "coveralls.detail": :test, "coveralls.post": :test, "coveralls.html": :test],
deps: deps]
end
def application do
[applications: [:logger]]
end
defp deps do
[{:connection, "~> 1.0.2"},
{:espec, "~> 0.8.21", only: :test},
{:excoveralls, "~> 0.5", only: :test}]
end
defp description do
"""
D-Connection IPC protocol for Elixir.
"""
end
defp package do
[# These are the default files included in the package
files: ["lib", "priv", "mix.exs", "README*", "readme*", "LICENSE*", "license*"],
maintainers: ["Marcin Lewandowski"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/mspanc/dbux",
"Docs" => "http://mspanc.github.io/dbux/"}]
end
end