defmodule Fsdb.Mixfile do use Mix.Project def project do [app: :fsdb, version: "0.1.0", elixir: "~> 1.3", build_embedded: Mix.env == :prod, start_permanent: Mix.env == :prod, description: description(), package: package(), deps: deps()] end def application do [] end defp deps do [] end defp description do """ Very simple 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", "mix.exs", "README*", ".gitignore"], maintainers: ["Samuel Ventura"], licenses: ["Apache 2.0"], links: %{"GitHub" => "https://github.com/samuelventura/fsdb/", "Docs" => "http://samuelventura.github.io/fsdb/"}] end end