-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackageInfo.g
84 lines (72 loc) · 2.95 KB
/
PackageInfo.g
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
SetPackageInfo( rec(
PackageName := "GGraph",
Version := "0.0.0",
Date := "23/07/2022",
PackageWWWHome :=
Concatenation( "https://pedrotrin13334.github.io/", LowercaseString( ~.PackageName ) ),
Subtitle := "GGraph/a Graph Defined on Groups GAP Package",
SourceRepository := rec(
Type := "git",
URL := Concatenation( "https://github.com/pedrotrin13334/", LowercaseString( ~.PackageName ) ),
),
IssueTrackerURL := Concatenation( ~.SourceRepository.URL, "/issues" ),
SupportEmail := "[email protected]",
PackageDoc := rec(
BookName := "GGraph",
ArchiveURLSubset := ["doc"],
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
HTMLStart := "doc/chap0_mj.html",
LongTitle := "GGraph/a Graph Defined on Groups Package",
Autoload := true ),
Dependencies := rec(
GAP := "4.9",
NeededOtherPackages := [ ["Grape", "4.8"] ,
["GAPDoc", "1.6"] ],
SuggestedOtherPackages := [ ],
ExternalConditions := [ ] ),
AvailabilityTest := ReturnTrue,
Status := "dev",
AbstractHTML :=
"The GGraph package, is a package to create, analyze and operate over graphs defined on abstract groups. a GAP package. It allows the construction of many different graphs defined on groups found in the academic literature.",
README_URL :=
Concatenation( ~.PackageWWWHome, "/README.md" ),
PackageInfoURL :=
Concatenation( ~.PackageWWWHome, "/PackageInfo.g" ),
Persons := [
rec(
LastName := "Trindade",
FirstNames := "Pedro",
IsAuthor := true,
IsMaintainer := true,
Email := "[email protected]",
Institution := "Universidade de Brasília (UnB)"
),
rec(
LastName := "Silva",
FirstNames := "Laura",
IsAuthor := true,
IsMaintainer := true,
Email := "[email protected]",
Institution := "Universidade de Brasília (UnB)"
),
],
ArchiveFormats := ".tar.gz",
ArchiveURL := Concatenation( ~.SourceRepository.URL,
"/releases/download/v", ~.Version,
"/", ~.PackageName, "-", ~.Version ),
# This is a string that is shown as the banner when the package is loaded,
# the \ must be \\ for this to work
BannerString:= Concatenation(
"\n ___ ___ ___ ___ ___ ___ ",
"\n /\\ \\ /\\ \\ /\\ \\ /\\ \\ /\\ \\ /\\__\\ ",
"\n / \\ \\ / \\ \\ / \\ \\ / \\ \\ / \\ \\ / /__/_ ",
"\n / /\\ \\__\\ / /\\ \\__\\ / \\ \\__\\ / \\ \\__\\ / \\ \\__\\ / \\/\\__\\ ",
"\n \\ \\ \\/__/ \\ \\ \\/__/ \\ / / \\/\\ / / \\/\\ / / \\/\\ / / ",
"\n \\ / / \\ / / \\ \\/__/ / / / \\/__/ / / / ",
"\n \\/__/ \\/__/ \\|__| \\/__/ \\/__/ ",
"\n",
"\n Graphs Defined on Groups Algorithms",
"\n Author: Pedro Trindade", "\n\n"
)
));