-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
45 lines (38 loc) · 924 Bytes
/
mix.exs
File metadata and controls
45 lines (38 loc) · 924 Bytes
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
defmodule Fsharpy.Mixfile do
use Mix.Project
@version "0.1.0"
def project do
[app: :fsharpy,
version: @version,
elixir: "~> 1.3",
deps: deps(),
name: "Fsharpy",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
docs: [source_ref: "v#{@version}", main: "readme", extras: ["README.md"]],
description: description(),
package: package()]
end
def application do
[applications: [:logger]]
end
defp deps do
[
{:credo, "~> 0.5", only: :dev}
]
end
defp description do
"""
Provides access to F# interactive (FSI) from Elixir. This is still in early stages
so please just use it for fun until v1.0.0.
"""
end
defp package do
[
name: :fsharpy,
maintainers: ["Bryan Hunter"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/bryanhunter/fsharpy"}
]
end
end