-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
49 lines (44 loc) · 1.05 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
defmodule Anthropic.MixProject do
use Mix.Project
@name "anthropic_community"
@version "0.4.3"
@repo_url "https://github.com/tubedude/anthropic-community"
def project do
[
app: :anthropic,
description: "Unofficial Anthropic API wrapper.",
name: @name,
source_url: @repo_url,
version: @version,
elixir: "~> 1.15",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger],
mod: {Anthropic.Application, []}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:finch, "~> 0.13"},
{:jason, "~> 1.0"},
{:ex_image_info, "~> 0.2.4"},
{:telemetry, "~> 1.0"},
{:mox, "~> 1.1.0", only: :test},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
def package do
[
name: @name,
licenses: ["Apache-2.0"],
links: %{"GitHub" => @repo_url}
]
end
end