Creating a Package

Creating a package in Julia is pretty straightforward, thanks to PkgTemplates.jl. It’s probably easiest to create the package interactively. To do this, just open a Julia REPL, then run:

using PkgTemplates
Template(interactive=true)("MyPkg")

And then follow the prompts to set up the package.