forked from gap-packages/SimplicialSurfaces
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackageInfo.g
155 lines (136 loc) · 5.03 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
144
145
146
147
148
149
150
151
152
153
154
#
# SimplicialSurfaces: Computation with simplicial surfaces and folding processes.
#
# This file contains package meta data. For additional information on
# the meaning and correct usage of these fields, please consult the
# manual of the "Example" package as well as the comments in its
# PackageInfo.g file.
#
SetPackageInfo( rec(
PackageName := "SimplicialSurfaces",
Subtitle := "Computing with simplicial surfaces and folding processes.",
Version := "0.6",
Date := "23/09/2021", # dd/mm/yyyy format
License := "GPL-3.0-or-later",
Persons := [
rec(
IsAuthor := true,
IsMaintainer := true,
FirstNames := "Alice",
LastName := "Niemeyer",
WWWHome := "http://www.math.rwth-aachen.de/~Alice.Niemeyer/",
Email := "[email protected]",
PostalAddress := "Alice Niemeyer\nLehrstuhl für Algebra und Darstellungstheorie\nRWTH Aachen\nPontdriesch 10/16\n52062 Aachen\nGERMANY\n",
Place := "Aachen",
Institution := "Chair of Algebra and Representation Theory",
),
rec(
IsAuthor := true,
IsMaintainer := false,
FirstNames := "Markus",
LastName := "Baumeister",
WWWHome := "https://markusbaumeister.github.io/",
Email := "[email protected]",
PostalAddress := "--",
Place := "Aachen",
Institution := "",
),
rec(
IsAuthor := true,
IsMaintainer := true,
FirstNames := "Reymond",
LastName := "Akpanya",
Email := "[email protected]",
PostalAddress := "--",
Place := "Aachen",
Institution := "Chair of Algebra and Representation Theory",
),
rec(
IsAuthor := true,
IsMaintainer := true,
FirstNames := "Tom",
LastName := "Görtzen",
Email := "[email protected]",
PostalAddress := "--",
Place := "Aachen",
Institution := "Chair of Algebra and Representation Theory",
),
rec(
IsAuthor := true,
IsMaintainer := true,
FirstNames := "Meike",
LastName := "Weiß",
Email := "[email protected]",
PostalAddress := "--",
Place := "Aachen",
Institution := "Chair of Algebra and Representation Theory",
),
rec(
IsAuthor := true,
IsMaintainer := true,
FirstNames := "Lukas",
LastName := "Schnelle",
Email := "[email protected]",
PostalAddress := "--",
Place := "Aachen",
Institution := "Chair of Algebra and Representation Theory",
),
rec(
LastName := "GAP Team",
FirstNames := "The",
IsAuthor := false,
IsMaintainer := true,
Email := "[email protected]",
),
],
#SourceRepository := rec( Type := "TODO", URL := "URL" ),
#IssueTrackerURL := "TODO",
#SupportEmail := "TODO",
PackageWWWHome := "https://github.com/gap-packages/SimplicialSurfaces",
PackageInfoURL := Concatenation( ~.PackageWWWHome, "PackageInfo.g" ),
README_URL := Concatenation( ~.PackageWWWHome, "README.md" ),
ArchiveURL := Concatenation( ~.PackageWWWHome,
"/", ~.PackageName, "-", ~.Version ),
ArchiveFormats := ".tar.gz",
## Status information. Currently the following cases are recognized:
## "accepted" for successfully refereed packages
## "submitted" for packages submitted for the refereeing
## "deposited" for packages for which the GAP developers agreed
## to distribute them with the core GAP system
## "dev" for development versions of packages
## "other" for all other packages
##
Status := "dev",
AbstractHTML := "The <span class='pkgname'>SimplicialSurfaces</span> package provides functionality for working with simplicial surfaces and generalisations",
PackageDoc := rec(
BookName := "SimplicialSurfaces",
ArchiveURLSubset := ["doc"],
HTMLStart := "doc/chap0_mj.html",
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
LongTitle := "Computation with simplicial surfaces and folding processes.",
),
Dependencies := rec(
GAP := ">= 4.12",
NeededOtherPackages := [ [ "Grape", ">=4.8.2" ], [ "AttributeScheduler", ">=2018.08.03" ], ["Digraphs", ">=1.1.1"],[ "NautyTracesInterface", ">=0.2" ]],
SuggestedOtherPackages := [ [ "GAPDoc", ">= 1.6" ], ["AutoDoc", ">=2019.05.20"], [ "IO", ">=2.2" ]],
ExternalConditions := [ ],
),
AvailabilityTest := function()
return true;
end,
TestFile := "tst/testall.g",
Keywords := [ "Simplicial" ],
AutoDoc := rec(
TitlePage := rec(
Copyright := Concatenation(
"©right; 2016-2021 by Alice Niemeyer and Markus Baumeister<P/>\n\n",
"This package may be distributed under the terms and conditions of the\n",
"GNU Public License Version 3 (or higher).<P/>",
"The primary sources for much of the covered material are:<P/>",
"The PhD-thesis \"Regularity Aspects for Combinatorial Simplicial Surfaces\" of Markus Baumeister<P/>",
"The book \"Simplicial Surfaces of Congruent Triangles\" by Alice C. Niemeyer, Wilhelm Plesken, Daniel Robertz, and Ansgar W. Strzelczyk (unpublished)<P/>"
),
)
),
));