Packages

Compressor is a distributed video compressor. It's designed to be used with Upmaru Studio

Current section

Files

Jump to
compressor mix.exs
Raw

mix.exs

defmodule Compressor.Mixfile do
@moduledoc false
use Mix.Project
def project do
[
app: :compressor,
version: "0.4.11",
elixir: "~> 1.6",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
source_url: "https://github.com/upmaru/compressor",
name: "Compressor",
description: description(),
deps: deps(),
package: package()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [
:timber,
:logger,
:ffmpex,
:exq,
:httpoison,
:upstream,
:downstream
],
mod: {Compressor.Application, []}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ffmpex, "~> 0.4.1"},
{:exq, "~> 0.10.1"},
{:downstream, "~> 0.1.0"},
{:httpoison, "~> 1.0.0"},
{:timber, "~> 2.5"},
{:upstream, "~> 1.4.6"},
{:pid_file, "~> 0.1.1", only: [:prod]},
{:distillery, "~> 1.5", runtime: false},
{:ex_doc, ">= 0.0.0", only: :dev}
# {:dep_from_hexpm, "~> 0.3.0"},
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"},
]
end
defp description do
"""
Compressor is a distributed video compressor. It's designed to be used with Upmaru Studio
"""
end
defp package do
[
name: :compressor,
files: ["lib", "mix.exs", "README*", "LICENSE*"],
maintainers: ["Zack Siri"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/upmaru/compressor"}
]
end
end