defmodule Cepheid.MixProject do use Mix.Project def project do [ app: :cepheid, version: "0.1.0", elixir: "~> 1.18", start_permanent: Mix.env() == :prod, deps: deps(), description: description(), package: package(), name: "Cepheid", source_url: "https://github.com/jmcguigs/cepheid" ] end # Run "mix help compile.app" to learn about applications. def application do [ extra_applications: [:logger] ] end defp description do """ Cepheid is a library for working with lightcurve data in elixir. """ end defp package do [ name: :cepheid, files: ["lib", "mix.exs", "README.md", "LICENSE"], licenses: ["MIT"], links: %{"GitHub" => "https://github.com/jmcguigs/cepheid"} ] end # Run "mix help deps" to learn about dependencies. defp deps do [ {:nx, "~> 0.9.2"}, {:ex_doc, ">= 0.0.0", only: :dev, runtime: false} ] end end