defmodule Serene.MixProject do use Mix.Project def project do [ app: :serene, version: "0.0.1", elixir: "~> 1.10", start_permanent: Mix.env() == :prod, deps: deps(), package: package(), name: "Serene", source_url: "https://github.com/caravelatech/serene", homepage_url: "https://sereneframework.org", description: """ Web framework for REST APIs focused on compliance, security and removing repetition and boredom out of the way - here for the fun. """ ] end def application do [ extra_applications: [:logger] ] end defp deps do [ {:plug, "~> 1.10"}, {:plug_cowboy, "~> 2.4"}, {:inflex, "~> 2.1"}, {:jason, "~> 1.2"}, {:ex_doc, ">= 0.0.0", only: :dev, runtime: false}, {:credo, "~> 1.5.0-rc.2", only: [:dev, :test], runtime: false} ] end defp package do [ maintainers: ["João Cerqueira"], licenses: ["MIT"], links: %{ github: "https://github.com/caravelatech/serene" }, files: ~w(lib mix.exs .formatter.exs LICENSE.md README.md) ] end end