-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmix.exs
More file actions
35 lines (31 loc) · 718 Bytes
/
mix.exs
File metadata and controls
35 lines (31 loc) · 718 Bytes
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
defmodule Easypost.Mixfile do
use Mix.Project
def project do
[app: :easypost,
version: "0.0.1",
elixir: "~> 1.0.0 or ~> 1.1",
deps: deps,
package: [
files: ["lib", "mix.exs", "README*", "LICENSE*"],
maintainers: ["Dania Simmons"],
licenses: ["MIT"],
links: %{github: "https://github.com/Dania02525/easypost"}
],
description: """
Elixir Easypost Client
"""]
end
# Configuration for the OTP application
#
# Type `mix help compile.app` for more information
def application do
[applications: [:logger, :inets]]
end
defp deps do
[
{:poison, ">= 1.5.0"},
{:ex_doc, "~> 0.10", only: :dev},
{:earmark, ">= 0.0.0"}
]
end
end