-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
52 lines (46 loc) · 1.26 KB
/
mix.exs
File metadata and controls
52 lines (46 loc) · 1.26 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 Chunx.MixProject do
use Mix.Project
@version "0.1.0"
def project do
[
app: :chunx,
version: @version,
elixir: "~> 1.17",
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps(),
source_url: "https://github.com/preciz/chunx"
]
end
defp description do
"An Elixir library for splitting text into meaningful chunks using Token, Word, Sentence, and Semantic strategies."
end
defp package do
[
maintainers: ["Barna Kovacs"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/preciz/chunx"}
]
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
[
{:tokenizers, "~> 0.5.1"},
{:nx, "~> 0.10"},
{:scholar, "~> 0.4"},
{:exla, "~> 0.10", only: [:dev, :test]},
{:bumblebee, "~> 0.6", only: [:dev, :test]},
{:stream_data, "~> 1.1", only: [:dev, :test]},
{:benchee, "~> 1.3", only: [:dev, :test]},
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:ex_doc, "~> 0.40", only: :dev, runtime: false}
]
end
end