zf

zenflows testing
git clone https://s.sonu.ch/~srfsh/zf.git
Log | Files | Refs | Submodules | README | LICENSE

mix.exs (940B)


      1 defmodule Bunt.Mixfile do
      2   use Mix.Project
      3 
      4   def project do
      5     [
      6       app: :bunt,
      7       version: "0.2.1",
      8       elixir: "~> 1.1",
      9       build_embedded: Mix.env() == :prod,
     10       start_permanent: Mix.env() == :prod,
     11       deps: deps(),
     12       name: "Bunt",
     13       description: "256 color ANSI coloring in the terminal",
     14       package: [
     15         maintainers: ["René Föhring"],
     16         licenses: ["MIT"],
     17         links: %{"GitHub" => "https://github.com/rrrene/bunt"}
     18       ]
     19     ]
     20   end
     21 
     22   # Configuration for the OTP application
     23   #
     24   # Type "mix help compile.app" for more information
     25   def application do
     26     [mod: {Bunt, []}, applications: [:logger]]
     27   end
     28 
     29   # Dependencies can be Hex packages:
     30   #
     31   #   {:mydep, "~> 0.3.0"}
     32   #
     33   # Or git/path repositories:
     34   #
     35   #   {:mydep, git: "https://github.com/elixir-lang/mydep.git", tag: "0.1.0"}
     36   #
     37   # Type "mix help deps" for more examples and options
     38   defp deps do
     39     []
     40   end
     41 end