summaryrefslogtreecommitdiff
path: root/mix.exs
diff options
context:
space:
mode:
authorHubert Chathi <hubert@uhoreg.ca>2019-09-23 21:38:04 -0400
committerHubert Chathi <hubert@uhoreg.ca>2019-09-23 21:38:04 -0400
commit6eca595c48cf2a7acddb992e96245a4bbcf06e36 (patch)
tree2f9d766ffa0236058b6b4c49924b2e987c517411 /mix.exs
initial version, extracted from Igor
Diffstat (limited to 'mix.exs')
-rw-r--r--mix.exs40
1 files changed, 40 insertions, 0 deletions
diff --git a/mix.exs b/mix.exs
new file mode 100644
index 0000000..796acdb
--- /dev/null
+++ b/mix.exs
@@ -0,0 +1,40 @@
+defmodule PolyjuiceClient.MixProject do
+ use Mix.Project
+
+ def project do
+ [
+ app: :polyjuice_client,
+ version: "0.1.0",
+ elixir: "~> 1.7",
+ start_permanent: Mix.env() == :prod,
+ deps: deps(),
+
+ # Docs
+ name: "Polyjuice Client",
+ source_url: "https://gitlab.com/uhoreg/polyjuice_client",
+ # homepage_url: "https://www.uhoreg.ca/programming/matrix/polyjuice",
+ docs: [
+ # The main page in the docs
+ main: "readme",
+ # logo: "path/to/logo.png",
+ extras: ["README.md"]
+ ]
+ ]
+ end
+
+ # Run "mix help compile.app" to learn about applications.
+ def application do
+ [
+ extra_applications: [:logger]
+ ]
+ end
+
+ # Run "mix help deps" to learn about dependencies.
+ defp deps do
+ [
+ {:ex_doc, "~> 0.21", only: :dev, runtime: false},
+ {:hackney, "~> 1.12"},
+ {:poison, "~> 4.0"}
+ ]
+ end
+end