defmodule PaperForge.MixProject do use Mix.Project @version "1.3.0" @source_url "https://github.com/Manuel1471/paper_forge" def project do [ app: :paper_forge, version: @version, elixir: "~> 1.20", start_permanent: Mix.env() == :prod, deps: deps(), description: description(), package: package(), name: "PaperForge", source_url: "https://github.com/Manuel1471/paper_forge", docs: docs() ] end def application do [ extra_applications: [:logger, :crypto, :public_key, :xmerl] ] end defp deps do [ {:qiroex, "~> 1.0"}, {:jason, "~> 1.4"}, {:telemetry, "~> 1.3"}, {:sign_core, "~> 0.1.4"}, {:soft_signer, "~> 0.1.0"}, {:ex_doc, "~> 0.40", only: :dev, runtime: false} ] end defp description do """ A pure Elixir PDF authoring engine with declarative templates, reusable component libraries, design systems, AES-256 security, PAdES signatures, tagged PDF, unified layout, fonts, images, navigation, and production output. """ end defp package do [ licenses: ["MIT"], links: %{ "GitHub" => "https://github.com/Manuel1471/paper_forge", "Changelog" => "https://github.com/Manuel1471/paper_forge/blob/main/CHANGELOG.md" }, files: [ "lib", "priv", "examples", "mix.exs", "README.md", "CHANGELOG.md", "API.md", "DECLARATIVE.md", "PAPERFORGE_TEMPLATES.md", "PHOENIX.md", "MIGRATING.md", "PRODUCTION.md", "LICENSE" ] ] end defp docs do [ main: "readme", name: "PaperForge", source_ref: "v#{@version}", source_url: @source_url, extras: [ "README.md", "CHANGELOG.md", "API.md", "DECLARATIVE.md", "PAPERFORGE_TEMPLATES.md", "PHOENIX.md", "MIGRATING.md", "PRODUCTION.md", "LICENSE" ] ] end end