defmodule Lotus.MixProject do use Mix.Project @source_url "https://github.com/typhoonworks/lotus" @version "0.9.2" def project do [ app: :lotus, name: "Lotus", version: @version, elixir: "~> 1.16", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod, aliases: aliases(), xref: [exclude: [Postgrex.Error, Exqlite.Error, MyXQL.Error]], deps: deps(), docs: docs(), package: package(), description: description(), source_url: @source_url, homepage_url: @source_url, dialyzer: dialyzer() ] end def cli do [preferred_envs: ["test.setup": :test, test: :test]] end def application do [ mod: {Lotus.Application, []}, extra_applications: [:logger] ] end defp elixirc_paths(:test), do: ["lib", "test/support"] defp elixirc_paths(:dev), do: ["lib", "test/support"] defp elixirc_paths(_), do: ["lib"] defp deps do [ {:ecto, "~> 3.10"}, {:ecto_sql, "~> 3.10"}, {:ecto_sqlite3, "~> 0.21", optional: true}, {:jason, "~> 1.4"}, {:myxql, "~> 0.8", optional: true}, {:nimble_csv, "~> 1.2"}, {:nimble_options, "~> 1.0"}, {:postgrex, "~> 0.20", optional: true}, # Development and testing dependencies {:dialyxir, "~> 1.4", only: [:dev, :test], runtime: false}, {:ex_doc, "~> 0.38", only: [:dev, :test], runtime: false}, {:mimic, "~> 2.0", only: :test} ] end defp aliases do [ "ecto.setup": ["ecto.create", "ecto.migrate"], "ecto.reset": ["ecto.drop", "ecto.setup"], "test.setup": ["ecto.drop --quiet", "ecto.create", "ecto.migrate"], lint: ["format", "dialyzer"] ] end defp package do [ name: "lotus", maintainers: ["Rui Freitas"], licenses: ["MIT"], links: %{GitHub: @source_url}, files: ~w[lib .formatter.exs mix.exs README* LICENSE*] ] end defp dialyzer do [ plt_add_apps: [:mix, :ex_unit, :ecto, :ecto_sql, :postgrex, :myxql], plt_core_path: "_build/#{Mix.env()}", flags: [:error_handling, :missing_return, :underspecs], ignore_warnings: ".dialyzer_ignore.exs" ] end defp docs do [ main: "readme", source_ref: "v#{@version}", extras: docs_guides(), groups_for_modules: [ "Core API": [Lotus, Lotus.Config, Lotus.Value], "Query Storage": [Lotus.Storage, Lotus.Storage.Query, Lotus.Storage.QueryVariable], "Query Execution": [Lotus.Runner, Lotus.Result, Lotus.Preflight], "Data Export": [Lotus.Export, ~r/Lotus\.Export\..+/], "Data Sources": [Lotus.Source, Lotus.Sources, ~r/Lotus\.Sources\..+/], "Schema Introspection": [Lotus.Schema, Lotus.Visibility], Caching: [Lotus.Cache, ~r/Lotus\.Cache\..+/], "Database Migrations": [Lotus.Migration, Lotus.Migrations, ~r/Lotus\.Migrations\..+/], "OTP Application": [Lotus.Application, Lotus.Supervisor], "SQL Processing": [Lotus.SQL.Transformer], Utilities: [Lotus.JSON] ] ] end defp docs_guides do [ "README.md", "guides/overview.md", "guides/installation.md", "guides/getting-started.md", "guides/advanced-variables.md", "guides/configuration.md", "guides/visibility.md", "guides/caching.md", "guides/contributing.md" ] end defp description do """ Lightweight, SQL query runner and storage for Elixir apps — save, organize, and execute analytical queries with Ecto. """ end end