Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Dds.MixProject do
use Mix.Project
def project do
[
app: :dds,
version: "0.11.3",
elixir: "~> 1.14",
description:
"development-driven-specs — the dds toolchain (protocol 2) as a Mix task. " <>
"A thin shim over the bundled instruments (Python, stdlib); never a port.",
package: [
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/u2i/development-driven-specs"},
files: ~w(lib priv mix.exs README.md)
],
deps: [
# hermetic runtime: embedded CPython + pinned wheels, provisioned
# at deps.get — no system Python. Optional: without it the shim
# falls back to uv, then python3, on PATH.
{:pythonx, "~> 0.4", optional: true}
]
]
end
def application, do: [extra_applications: []]
end