-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
70 lines (64 loc) · 1.62 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
defmodule Mulberry.MixProject do
use Mix.Project
@source_url "https://github.com/agoodway/mulberry"
@version "0.0.1"
def project do
[
app: :mulberry,
version: @version,
elixir: "~> 1.15",
start_permanent: Mix.env() == :prod,
package: package(),
deps: deps(),
docs: docs()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:floki, "~> 0.36.0"},
{:req, "~> 0.5.0"},
{:ex_doc, "~> 0.14", only: :dev, runtime: false},
{:langchain, "0.3.0-rc.0"},
{:html2markdown, github: "agoodway/html2markdown", branch: "main"},
{:flamel, github: "themusicman/flamel", branch: "main"},
{:text_chunker, "~> 0.3.0"},
{:tokenizers, "~> 0.3.0"},
{:dialyxir, "~> 1.0", only: [:dev, :test], runtime: false},
{:rambo, "~> 0.3"},
{:mime, "~> 2.0"},
{:tesseract_ocr, github: "agoodway/tesseract-ocr-elixir", branch: "master"},
{:playwright, "~> 1.44.0-alpha.3"}
]
end
def package do
[
description: "An AI Library",
maintainers: ["Thomas Brewer"],
contributors: ["Thomas Brewer"],
licenses: ["MIT"],
links: %{
GitHub: @source_url
}
]
end
defp docs do
[
extras: [
LICENSE: [title: "License"],
"README.md": [title: "Readme"]
],
main: "readme",
source_url: @source_url,
source_ref: "v#{@version}",
api_reference: false,
formatters: ["html"]
]
end
end