-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
52 lines (47 loc) · 1.2 KB
/
Copy pathmix.exs
File metadata and controls
52 lines (47 loc) · 1.2 KB
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
48
49
50
51
52
defmodule SrtParser.MixProject do
use Mix.Project
def project do
[
app: :srt_parser,
version: "0.1.1",
elixir: "~> 1.16",
start_permanent: Mix.env() == :prod,
source_url: "https://github.com/monocursive/srt_parser",
description: "Elixir package to parse SRT (subtitles) files",
package: package(),
deps: deps(),
docs: docs()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}]
end
defp package do
[
maintainers: ["Monocursive"],
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/monocursive/srt_parser",
"Monocurive Homepage" => "https://monocursive.com"
},
files: ["lib", "mix.exs", "README*", "LICENSE*", ".formatter.exs"]
]
end
defp docs do
[
extras: [
LICENSE: [title: "License"],
"README.md": [title: "Overview"]
],
main: "readme",
source_url: "https://github.com/monocursive/srt_parser",
source_ref: "0.1.0",
formatters: ["html"]
]
end
end