-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage_setup_script.jl
More file actions
31 lines (31 loc) · 1.02 KB
/
Copy pathpackage_setup_script.jl
File metadata and controls
31 lines (31 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import Pkg
Pkg.add("PkgTemplates")
using PkgTemplates
t = Template(;
user="BadiaLab",
authors=["Santiago Badia <santiago.badia@monash.edu>", "Alberto F. Martin <alberto.martin@monash.edu>"],
dir=pwd(),
julia=v"1.8",
plugins=[
License(; name="MIT", path=nothing, destination="LICENSE.md"),
CompatHelper(),
Codecov(),
GitHubActions(;
osx=false,
windows=false,
),
Documenter{GitHubActions}(),
Git(;
ignore=["*.jl.*.cov",
"*.jl.cov",
"*.jl.mem",
"*.code-workspace",
".DS_Store",
"docs/build/",
"Manifest.toml",
"tmp/"],
ssh=true
),
],
)
t("AutoExperimentsProjectTemplate")