Skip to content

Template generator for Julia Lang packages used by the #bhftbootcamp community

License

Notifications You must be signed in to change notification settings

bhftbootcamp/TemplateTools.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TemplateTools.jl

Stable Dev Build Status Coverage Registry

Template generator for Julia Lang packages used by the #bhftbootcamp community, intended for registration with the General and Green registries.

Installation

If you haven't installed our local registry yet, do that first:

] registry add https://github.com/bhftbootcamp/Green.git

To install TemplateTools, simply use the Julia package manager:

] add TemplateTools

Usage

A new package can be created as follows:

using TemplateTools

create_project(
    package_name = "NumExpr",
    github_username = "bhftbootcamp",
    template = "green", # "general" or "green"
    version = VersionNumber(0, 1, 0),
    owners = String["bootcampman", ],
    maintainers = String[],
    copyright_holder = "bhftbootcamp",
    commit = true,
    push = false,
)

Bug Report

Found a bug? Please report it by opening an issue on our GitHub repository.