-
Notifications
You must be signed in to change notification settings - Fork 1
/
PackageInfo.g
104 lines (90 loc) · 3.38 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
#
# SL2Reps: Constructing symmetric representations of SL(2,Z).
#
SetPackageInfo( rec(
PackageName := "SL2Reps",
Subtitle := "Constructing symmetric representations of SL(2,Z).",
Version := "1.1",
Date := "26/11/2022", # dd/mm/yyyy format
License := "GPL-2.0-or-later",
Persons := [
rec(
FirstNames := "Siu-Hung",
LastName := "Ng",
WWWHome := "https://www.math.lsu.edu/~rng/",
Email := "[email protected]",
IsAuthor := true,
IsMaintainer := false,
PostalAddress := "Louisiana State University, Baton Rouge, LA, 70803, USA",
Place := "Baton Rouge, LA, USA",
Institution := "Louisiana State University",
),
rec(
FirstNames := "Yilong",
LastName := "Wang",
WWWHome := "https://yilongwang11.github.io",
Email := "[email protected]",
IsAuthor := true,
IsMaintainer := false,
PostalAddress := "Louisiana State University, Baton Rouge, LA, 70803, USA <Br/> Current: Beijing Institute of Mathematical Sciences and Applications (BIMSA), Huairou, Beijing, China",
#Place := TODO,
Institution := "Louisiana State University; currently Beijing Institute of Mathematical Sciences and Applications (BIMSA)",
),
rec(
FirstNames := "Samuel",
LastName := "Wilson",
WWWHome := "https://snw-0.github.io",
Email := "[email protected]",
IsAuthor := true,
IsMaintainer := true,
PostalAddress := "Louisiana State University, Baton Rouge, LA, 70803, USA",
Place := "Baton Rouge, LA, USA",
Institution := "Louisiana State University",
),
],
Status := "deposited",
SourceRepository := rec( Type := "git", URL := "https://github.com/snw-0/sl2-reps" ),
IssueTrackerURL := Concatenation( ~.SourceRepository.URL, "/issues" ),
PackageWWWHome := "https://snw-0.github.io/sl2-reps",
PackageInfoURL := Concatenation( ~.PackageWWWHome, "/PackageInfo.g" ),
README_URL := Concatenation( ~.PackageWWWHome, "/README" ),
ArchiveURL := Concatenation( ~.SourceRepository.URL,
"/releases/download/v", ~.Version,
"/sl2-reps-", ~.Version ),
ArchiveFormats := ".tar.gz",
AbstractHTML :=
"The <span class=\"pkgname\">SL2Reps</span> package provides provides methods for constructing and testing matrix presentations of the representations of SL(2,Z) whose kernels are congruence subgroups of SL(2,Z).",
PackageDoc := rec(
BookName := "SL2Reps",
ArchiveURLSubset := ["doc"],
HTMLStart := "doc/chap0_mj.html",
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
LongTitle := "Constructing symmetric representations of SL(2,Z).",
),
Dependencies := rec(
GAP := ">= 4.10",
NeededOtherPackages := [ ],
SuggestedOtherPackages := [ ],
ExternalConditions := [ ],
),
AvailabilityTest := ReturnTrue,
TestFile := "tst/testall.g",
Keywords := [ "representations" ],
AutoDoc := rec(
TitlePage := rec(
Copyright := """
<Index>License</Index>
©right; 2022 by Siu-Hung Ng, Yilong Wang, and Samuel Wilson<P/>
This package is free software;
you can redistribute it and/or modify it under the terms of the
<URL Text="GNU General Public License">https://www.fsf.org/licenses/gpl.html</URL>
as published by the Free Software Foundation; either version 2 of the License,
or (at your option) any later version.
""",
Acknowledgements := """
This project is partially supported by NSF grant DMS 1664418.
""",
),
),
));