defmodule Fsdb.Mixfile do use Mix.Project def project do [app: :fsdb, version: "0.2.1", elixir: "~> 1.3", build_embedded: Mix.env == :prod, start_permanent: Mix.env == :prod, description: description(), package: package(), deps: deps()] end def application do [mod: {Fsdb.App, []}] end defp deps do [{:ex_doc, "~> 0.12", only: :dev}] end defp description do """ Minimal filesystem database with Erlang term text serialization (Erlang's JSON). Each table is a folder and each row is a file. Any Erlang term can be persisted as a row. Rows have auto generated IDs. Row files are human readable. """ end defp package do [ name: :fsdb, files: ["lib", "test", "config", "mix.exs", "*.md", ".gitignore"], maintainers: ["Samuel Ventura"], licenses: ["Apache 2.0"], links: %{"GitHub" => "https://github.com/samuelventura/fsdb/", "Docs" => "http://samuelventura.github.io/fsdb/"}] end end