Packages

Erlang client library for Neo4J This is a lightweight wrapper for Neo4j REST API. Exposes all of the functionality exposed by Neo4J REST API. Please refer to README to see if you need version 0.2.1 or 0.3

Current section

Files

Jump to
neo4j mix.exs
Raw

mix.exs

defmodule Neo4J.Mixfile do
use Mix.Project
def project do
[app: :neo4j,
version: "0.2.1",
description: description,
package: package,
deps: deps]
end
def application do
[applications: [:hackney, :jiffy]]
end
defp deps do
[{:hackney, "~> 1.4.9"},
{:jiffy, "~> 0.14.7"}]
end
defp description do
"""
Erlang client library for Neo4J
This is a lightweight wrapper for Neo4j REST API. Exposes all of the functionality
exposed by Neo4J REST API.
Please refer to README to see if you need version 0.2.1 or 0.3
"""
end
defp package do
[# These are the default files included in the package
files: ["mix.exs", "src", "README*", "LICENSE*", "erlang.mk", "Makefile", "*.config"],
maintainers: ["Dmitrii Dimandt"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/dmitriid/neo4j-erlang"},
build_tools: ["make", "rebar3"]
]
end
end