Packages

An Elixir implementation of DSPy (Declarative Self-improving Language Programs)

Current section

Files

Jump to
dspy mix.exs
Raw

mix.exs

defmodule Dspy.MixProject do
use Mix.Project
def project do
[
app: :dspy,
version: "0.1.0",
elixir: "~> 1.18",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package(),
source_url: "https://github.com/arthurcolle/dspy.ex"
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger, :inets, :ssl],
mod: {Dspy.Application, []}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:jason, "~> 1.4"},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
defp description do
"An Elixir implementation of DSPy (Declarative Self-improving Language Programs)"
end
defp package do
[
name: "dspy",
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/arthurcolle/dspy.ex"},
maintainers: ["Arthur Colle"]
]
end
end