abelsiqueira / BestieTemplate.jl

Template for Julia Programming Language packages using the copier engine.
http://abelsiqueira.com/BestieTemplate.jl/
Mozilla Public License 2.0
24 stars 6 forks source link

Install BestieTemplate.jl in usage instructions #297

Closed fdiblen closed 1 week ago

fdiblen commented 1 week ago

Description

If the users do not have BestieTemplate installed on their systems, they first need to install it. I suggest to update the usage instructions (https://abelsiqueira.com/BestieTemplate.jl/stable/#Using)

from

julia> using BestieTemplate
julia> BestieTemplate.generate("YourPackage.jl")

to

julia> import Pkg; Pkg.add("BestieTemplate")
julia> using BestieTemplate
julia> BestieTemplate.generate("YourPackage.jl")

This could be added to the following code snippets as well.

abelsiqueira commented 1 week ago

The docs file also have the information, but in an earlier section. It is otherwise done in #342.