forked from electricshaman/hippy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
47 lines (42 loc) · 1 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
45
46
47
defmodule Hippy.MixProject do
use Mix.Project
def project do
[
app: :hippy,
version: "0.4.0-dev",
elixir: "~> 1.11",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package(),
name: "Hippy",
source_url: "https://github.com/mpichette/hippy"
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:httpoison, "~> 1.8"},
{:ex_doc, "~> 0.23", only: :dev},
{:hexate, ">= 0.6.1"}
]
end
defp description do
"""
Hippy is an Internet Printing Protocol (IPP) client implementation in Elixir for performing
distributed printing over HTTP. It can be used with CUPS or network printers supporting IPP.
"""
end
defp package do
[
files: ["lib", "mix.exs", "README.md", "LICENSE"],
organization: "jackpocket",
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/jackpocket/hippy"}
]
end
end