-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
44 lines (38 loc) · 1.02 KB
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
defmodule Http.Mixfile do
use Mix.Project
def project do
[ app: :http,
version: "0.0.2-dev",
elixir: "~> 1.0",
name: "Http",
source_url: "https://github.com/slogsdon/http",
deps: deps,
description: description,
package: package,
docs: [ readme: "README.md", main: "README" ],
test_coverage: [ tool: ExCoveralls ] ]
end
def application do
[ applications: [ :logger, :pool, :crypto,
:public_key, :ssl ],
mod: { Http, [] } ]
end
defp deps do
[ { :pool, "~> 0.0.2" },
{ :earmark, "~> 0.1.12", only: :docs },
{ :ex_doc, "~> 0.6.2", only: :docs },
{ :excoveralls, "~> 0.3", only: :test },
{ :dialyze, "~> 0.1.3", only: :test } ]
end
defp description do
"""
HTTP server for Elixir
Not currently working, but close :)
"""
end
defp package do
%{ contributors: [ "Shane Logsdon" ],
licenses: [ "MIT" ],
links: %{ "GitHub" => "https://github.com/slogsdon/http" } }
end
end