Skip to content

Instantly share code, notes, and snippets.

@jaantollander
Last active September 15, 2021 06:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jaantollander/cd0aedf8d304ddc0961eccda682c64c2 to your computer and use it in GitHub Desktop.
Save jaantollander/cd0aedf8d304ddc0961eccda682c64c2 to your computer and use it in GitHub Desktop.
Template for creating a Julia package with PkgTemplates.jl to current working directory.
using PkgTemplates
template = Template(;
user="jaantollander",
authors="Jaan Tollander de Balsch",
julia=v"1.6",
dir=".",
plugins=[
License(; name="MIT"),
GitHubActions(),
Documenter{GitHubActions}(),
],
)
template("MyPackage")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment