-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPackageInfo.g
143 lines (132 loc) · 5.02 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
#############################################################################
##
## PackageInfo.g for the package `modisom' Bettina Eick
##
SetPackageInfo( rec(
PackageName := "ModIsom",
Subtitle := "Computing automorphisms and checking isomorphisms for modular group algebras of finite p-groups",
Version := "3.0.1",
Date := "28/12/2024", # dd/mm/yyyy format
License := "GPL-2.0-or-later",
Persons := [
rec(
LastName := "Eick",
FirstNames := "Bettina",
IsAuthor := true,
IsMaintainer := true,
Email := "[email protected]",
WWWHome := "http://www.iaa.tu-bs.de/beick",
PostalAddress := Concatenation(
"Institut Analysis und Algebra\n",
"TU Braunschweig\n",
"Universitätsplatz 2\n",
"D-38106 Braunschweig\n",
"Germany" ),
Place := "Braunschweig",
Institution := "TU Braunschweig"
),
rec(
LastName := "Garcia-Lucas",
FirstNames := "Diego",
IsAuthor := true,
IsMaintainer := false,
Email := "[email protected]",
PostalAddress := Concatenation(
"Departamento de Matematicas\n",
"Facultad de Matematicas\n",
"Universidad de Murcia\n",
"ES-30100 Murcia\n",
"Spain" ),
Place := "Murcia",
Institution := "Universidad de Murcia"
),
rec(
LastName := "Konovalov",
FirstNames := "Olexandr",
IsAuthor := false,
IsMaintainer := true,
Email := "[email protected]",
WWWHome := "https://olexandr-konovalov.github.io/",
PostalAddress := Concatenation( [
"School of Computer Science\n",
"University of St Andrews\n",
"Jack Cole Building, North Haugh,\n",
"St Andrews, Fife, KY16 9SX, Scotland" ] ),
Place := "St Andrews",
Institution := "University of St Andrews"
),
rec(
LastName := "Margolis",
FirstNames := "Leo",
IsAuthor := true,
IsMaintainer := true,
Email := "[email protected]",
WWWHome := "http://www.margollo.github.io",
PostalAddress := Concatenation(
"Departamento de Matematicas\n",
"Universidad Autonoma de Madrid\n",
"Campus Cantoblanco\n",
"28049 Madrid\n",
"Spain" ),
Place := "Madrid",
Institution := "Universidad Autonoma de Madrid"
),
rec(
LastName := "Moede",
FirstNames := "Tobias",
IsAuthor := true,
IsMaintainer := false,
Email := "[email protected]",
WWWHome := "https://www.tu-braunschweig.de/iaa/personal/moede",
PostalAddress := Concatenation( [
"Institute of Analysis and Algebra\n",
"TU Braunschweig\n",
"Universitaetsplatz 2, 38106 Braunschweig\n",
"Germany" ] ),
Place := "Braunschweig",
Institution := "TU Braunschweig"
)
],
Status := "accepted",
CommunicatedBy := "Olexandr Konovalov (St Andrews)",
AcceptDate := "11/2013",
PackageWWWHome := "https://gap-packages.github.io/modisom/",
README_URL := Concatenation( ~.PackageWWWHome, "README.md" ),
PackageInfoURL := Concatenation( ~.PackageWWWHome, "PackageInfo.g" ),
SourceRepository := rec(
Type := "git",
URL := "https://github.com/gap-packages/modisom",
),
IssueTrackerURL := Concatenation( ~.SourceRepository.URL, "/issues" ),
ArchiveURL := Concatenation( ~.SourceRepository.URL,
"/releases/download/v", ~.Version,
"/modisom-", ~.Version ),
ArchiveFormats := ".tar.gz",
AbstractHTML :=
"The <span class=\"pkgname\">ModIsom</span> package contains various methods for computing with nilpotent associative algebras. In particular, it contains a method to determine the automorphism group and to test isomorphis of such algebras over finite fields and of modular group algebras of finite p-groups, and it contains a nilpotent quotient algorithm for finitely presented associative algebras and a method to determine Kurosh algebras.",
PackageDoc := rec(
BookName := "ModIsom",
ArchiveURLSubset := ["doc", "htm"],
HTMLStart := "htm/chapters.htm",
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
LongTitle := "Computing with nilpotent associative algebras",
Autoload := true
),
Dependencies := rec(
GAP := ">=4.7",
NeededOtherPackages := [["Polycyclic", ">=1.0"], ["LAGUNA", ">=3.8.0"]],
SuggestedOtherPackages := [],
ExternalConditions := []
),
BannerString := Concatenation( "Loading ModIsom ", ~.Version, "... \n"),
AvailabilityTest := ReturnTrue,
Autoload := false,
TestFile := "tst/testall.g",
Keywords := ["modular isomorphism problem",
"automorphism group",
"isomorphism testing",
"nilpotent algebras",
"nilpotent quotient",
"Kurosh algebras"]
));