-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
43 lines (37 loc) · 813 Bytes
/
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
defmodule Stripe.Mixfile do
use Mix.Project
def project do
[
app: :stripe,
version: "0.0.1",
source_url: "https://github.com/SenecaSystems/stripe",
elixir: "~> 1.0",
deps: deps,
description: description,
package: package
]
end
def application do
[applications: [:logger]]
end
defp deps do
[
{:ibrowse, github: "cmullaparthi/ibrowse", tag: "v4.1.0"},
{:httpotion, "~> 0.2.0"},
{:jazz, "~> 0.2"}
]
end
defp description do
"""
Wrapper around Stripe's API.
Full documentation can be found at https://stripe.com/docs/api
"""
end
defp package do
[
licenses: ["MIT"],
links: %{github: "https://github.com/SenecaSystems/stripe"},
contributors: ["Chris Maddox"]
]
end
end