-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
51 lines (45 loc) · 1.13 KB
/
Copy pathmix.exs
File metadata and controls
51 lines (45 loc) · 1.13 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
defmodule Chunx.MixProject do
use Mix.Project
@version "0.2.0"
def project do
[
app: :chunx,
version: @version,
elixir: "~> 1.17",
description: description(),
package: package(),
docs: docs(),
deps: deps(),
source_url: "https://github.com/preciz/chunx"
]
end
defp description do
"Text chunking for Elixir with token, word, sentence, recursive, and semantic strategies."
end
defp docs do
[
main: "readme",
extras: ["README.md", "CHANGELOG.md", "LICENSE"],
source_ref: "v#{@version}"
]
end
defp package do
[
maintainers: ["Barna Kovacs"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/preciz/chunx"}
]
end
defp deps do
[
{:tokenizers, "~> 0.5.1"},
{:nx, "~> 0.13.1"},
{:scholar, "~> 0.4.2"},
{:exla, "~> 0.13.1", only: [:dev, :test]},
{:bumblebee, "~> 0.7.1", only: [:dev, :test]},
{:stream_data, "~> 1.4", only: [:dev, :test]},
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:ex_doc, "~> 0.40", only: :dev, runtime: false}
]
end
end