defmodule Bitcoin.MixProject do use Mix.Project def project do [ app: :bitcoinSimulator, version: "0.1.1", elixir: "~> 1.7", start_permanent: Mix.env() == :prod, deps: deps(), escript: escript(), package: [ # files: ["lib", "mix.exs", "README*", "LICENSE*"], maintainers: ["Bhuvan Malik"], licenses: ["MIT"], links: %{"GitHub" => "https://github.com/bhuvanmalik007/bitcoin"}, description: "💰Customisable Bitcoin-Blockchain ecosystem in Elixir. Includes blockchain, crypto wallets, miners and simulation of transactions." ] ] end def escript do [main_module: BitcoinMain] end # Run "mix help compile.app" to learn about applications. def application do [ extra_applications: [:logger], applications: [:rsa_ex] ] end # Run "mix help deps" to learn about dependencies. defp deps do [ {:rsa_ex, "~> 0.4"}, {:ex_doc, ">= 0.0.0", only: :dev} # {:dep_from_hexpm, "~> 0.3.0"}, # {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}, ] end end