Last active
September 15, 2021 06:08
-
-
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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