mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-11-15 12:25:31 +08:00
40 lines
672 B
Elixir
40 lines
672 B
Elixir
|
defmodule ElixirKit.MixProject do
|
||
|
use Mix.Project
|
||
|
|
||
|
def project do
|
||
|
[
|
||
|
app: :elixirkit,
|
||
|
version: "0.1.0",
|
||
|
elixir: "~> 1.14",
|
||
|
start_permanent: Mix.env() == :prod,
|
||
|
package: package(),
|
||
|
deps: deps()
|
||
|
]
|
||
|
end
|
||
|
|
||
|
def application do
|
||
|
[
|
||
|
extra_applications: [:logger],
|
||
|
mod: {ElixirKit.Application, []}
|
||
|
]
|
||
|
end
|
||
|
|
||
|
def package do
|
||
|
[
|
||
|
files: [
|
||
|
"lib",
|
||
|
"elixirkit_swift/Package.swift",
|
||
|
"elixirkit_swift/Sources",
|
||
|
"elixirkit_dotnet/ElixirKit.csproj",
|
||
|
"elixirkit_dotnet/ElixirKit.cs",
|
||
|
"mix.exs",
|
||
|
"README.md"
|
||
|
]
|
||
|
]
|
||
|
end
|
||
|
|
||
|
defp deps do
|
||
|
[]
|
||
|
end
|
||
|
end
|