Skip to content

Commit

Permalink
Package for hex.
Browse files Browse the repository at this point in the history
  • Loading branch information
am-kantox committed Jun 20, 2017
1 parent 8ceb474 commit 1fbcfbe
Showing 1 changed file with 21 additions and 10 deletions.
31 changes: 21 additions & 10 deletions mix.exs
@@ -1,27 +1,38 @@
defmodule StringNaming.Mixfile do
use Mix.Project

@application :string_naming

def project do
[
app: :string_naming,
app: @application,
version: "0.2.0",
elixir: "~> 1.4",
start_permanent: Mix.env == :prod,
description: description(),
package: package(),
deps: deps()
]
end

# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
def application, do: []

defp deps, do: []

defp description do
"""
Compile-time generated set of modules to ease an access to a predefined subset of UTF8 symbols.
"""
end

# Run "mix help deps" to learn about dependencies.
defp deps do
defp package do
[
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"},
]
name: @application,
files: ~w|lib mix.exs README.md|,
maintainers: ["Aleksei Matiushkin"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/am-kantox/#{@application}",
"Docs" => "https://hexdocs.pm/#{@application}"}]
end

end

0 comments on commit 1fbcfbe

Please sign in to comment.