defmodule RodarPython.MixProject do use Mix.Project def project do [ app: :rodar_python, version: "0.1.1", elixir: "~> 1.16", start_permanent: Mix.env() == :prod, deps: deps(), description: "Python script engine for the Rodar BPMN execution engine", package: package(), # Docs name: "Rodar Python", source_url: "https://github.com/rodar-project/rodar_python", homepage_url: "https://github.com/rodar-project/rodar_python", docs: docs() ] end def application do [ extra_applications: [:logger] ] end defp deps do [ {:rodar, "~> 1.4"}, {:rodar_release, "~> 1.2", only: :dev, runtime: false}, {:erlport, "~> 0.11"}, {:ex_doc, "~> 0.35", only: :dev, runtime: false} ] end defp docs do [ main: "readme", extras: [ "README.md", "CHANGELOG.md", "guides/getting_started.md", "guides/architecture.md", "guides/data_marshalling.md", "guides/sandboxing.md" ], groups_for_extras: [ Guides: ~r/guides\/.*/ ], groups_for_modules: [ Core: [ RodarPython, RodarPython.Engine ] ] ] end defp package do [ licenses: ["Apache-2.0"], links: %{"GitHub" => "https://github.com/rodar-project/rodar_python"} ] end end