diff --git a/mix.exs b/mix.exs index d1d474e..5233c18 100644 --- a/mix.exs +++ b/mix.exs @@ -1,26 +1,24 @@ defmodule ExIrc.Mixfile do use Mix.Project def project do [ app: :exirc, version: "0.3.1", - name: "ExIrc", - source_url: "https://github.com/bitwalker/exirc", - homepage_url: "http://bitwalker.github.io/exirc", - deps: deps ] + description: "An IRC client library for Elixir.", + deps: [] ] end # Configuration for the OTP application def application do [mod: {ExIrc.App, []}] end - # Returns the list of dependencies in the format: - # { :foobar, git: "https://github.com/elixir-lang/foobar.git", tag: "0.1" } - # - # To specify particular versions, regardless of the tag, do: - # { :barbat, "~> 0.1", github: "elixir-lang/barbat.git" } - defp deps do - [] + defp package do + [ files: ["lib", "mix.exs", "README.md", "LICENSE"], + contributors: ["Paul Schoenfelder"], + licenses: ["MIT"], + links: [ { "GitHub", "https://github.com/bitwalker/exirc" }, + { "Home Page", "http://bitwalker.org/exirc"} ] ] end + end diff --git a/package.exs b/package.exs deleted file mode 100644 index c8ac45b..0000000 --- a/package.exs +++ /dev/null @@ -1,10 +0,0 @@ -Expm.Package.new( - name: "exirc", - description: "An IRC client library written in Elixir", - homepage: "https://bitwalker.github.io/exirc", - version: "0.3.1", - keywords: ["irc", "client", "library", "elixir"], - maintainers: [[name: "Paul Schoenfelder", email: "paulschoenfelder@gmail.com"]], - repositories: [[github: "bitwalker/exirc"]] -) -