defmodule Compound.MixProject do use Mix.Project def project do [ app: :compound, version: "0.1.0", elixir: "~> 1.6", build_embedded: Mix.env() == :prod, start_permanent: Mix.env() == :prod, description: description(), package: package(), deps: deps(), name: "Compound", source_url: "https://github.com/lvlick/Compound" ] end # Run "mix help compile.app" to learn about applications. def application do [ extra_applications: [:logger], mod: {Compound.Application, []} ] end # Run "mix help deps" to learn about dependencies. defp deps do [ {:ex_doc, "~> 0.16", only: :dev, runtime: false} # {: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 "Compound is a minimalistic TCP Server written in Elixir" end defp package() do [ name: "compound", files: ["lib", "mix.exs", "README.md", "LICENCE.txt"], licenses: ["GNU General Public License v3.0"], maintainers: ["Kristof Mickeleit"], links: %{"GitHub" => "https://github.com/lvlick/Compound"} ] end end