forked from stochastic-thread/stripe
-
Notifications
You must be signed in to change notification settings - Fork 2
/
mix.exs
39 lines (33 loc) · 789 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
defmodule Stripex.Mixfile do
use Mix.Project
def project do
[
app: :stripex,
version: "0.1.0",
source_url: "https://github.com/foxnewsnetwork/stripex",
elixir: "~> 1.0",
deps: deps,
description: description,
package: package
]
end
def application do
[applications: [:logger, :gateway]]
end
defp deps do
[{:gateway, "~> 0.0.4"}]
end
defp description do
"""
A much more ruby-stripe-like wrapper around Stripe's API (built with Poison).
Full documentation can be found at https://stripe.com/docs/api
"""
end
defp package do
[
licenses: ["MIT"],
links: %{github: "https://github.com/foxnewsnetwork/stripex"},
contributors: ["Chris Maddox", "Thomas Chen"]
]
end
end