-
Notifications
You must be signed in to change notification settings - Fork 2
/
mix.exs
40 lines (35 loc) · 830 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
defmodule Htpasswd.Mixfile do
use Mix.Project
def project do
[app: :htpasswd,
version: "1.0.2",
elixir: "~> 1.0.0",
description: description,
package: package,
deps: deps]
end
def application do
[applications: [:logger]]
end
def description do
"""
Provides basic htpasswd(1) functions as a library: encode and
check passwords in MD5, SHA, crypt, or plaintext format, add to
and delete from htaccess files.
"""
end
def package do
[
files: ["lib", "mix.exs", "README*", "test"],
contributors: ["Kevin Montuori"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/kevinmontuori/Apache.htpasswd"}
]
end
defp deps do
[
{:apache_passwd_md5, "~> 1.0"},
{:crypt, github: "msantos/crypt"}
]
end
end