defmodule Sqlitex.Mixfile do use Mix.Project def project do [ app: :sqlitex, version: "1.4.3", elixir: "~> 1.4", deps: deps(), package: package(), test_coverage: [tool: ExCoveralls], preferred_cli_env: [ coveralls: :test, "coveralls.circle": :test, "coveralls.detail": :test, "coveralls.post": :test, "coveralls.html": :test], description: """ A thin Elixir wrapper around esqlite """, dialyzer: [plt_add_deps: :transitive], ] end # Configuration for the OTP application def application do [extra_applications: [:logger]] end # Type `mix help deps` for more examples and options defp deps do [ {:esqlite, "~> 0.2.4"}, {:decimal, "~> 1.5"}, {:credo, "~> 0.10", only: :dev}, {:dialyxir, "~> 1.0.0-rc.3", only: :dev, runtime: false}, {:excoveralls, "~> 0.10", only: :test}, {:ex_doc, "~> 0.19", only: :docs, runtime: false}, {:excheck, "~> 0.6", only: :test}, {:triq, "~> 1.2", only: :test}, ] end defp package do [maintainers: ["Michael Ries", "Jason M Barnes", "Graeme Coupar", "Eric Scouten", "Connor Rigby"], licenses: ["MIT"], links: %{ github: "https://github.com/Sqlite-Ecto/sqlitex", docs: "http://hexdocs.pm/sqlitex"}] end end