-
Notifications
You must be signed in to change notification settings - Fork 2
/
PackageInfo.g
142 lines (133 loc) · 7.79 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
#############################################################################
##
## PackageInfo.g for the package `QDistRnd' L. P. Pryadko
## V. A. Shabashov
## V. K. Kozin
## For the LoadPackage mechanism in GAP >= 4.5 the minimal set of needed
## entries is .PackageName, .Version, and .AvailabilityTest, and an error
## will occur if any of them is missing. Other important entries are
## .PackageDoc and .Dependencies. The other entries are relevant if the
## package will be distributed for other GAP users, in particular if it
## will be redistributed via the GAP Website.
##
## With a new release of the package at least the entries .Version, .Date
## and .ArchiveURL must be updated.
SetPackageInfo(
rec(
PackageName := "QDistRnd",
Subtitle := "Calculate the distance of a q-ary quantum stabilizer code",
Version := "0.9.5",
Date := "20/11/2024",
License := "GPL-2.0-or-later",
PackageWWWHome := "https://QEC-pages.github.io/QDistRnd",
SourceRepository :=
rec( Type := "git", URL := "https://github.com/QEC-pages/QDistRnd" ),
IssueTrackerURL := Concatenation( ~.SourceRepository.URL, "/issues" ),
README_URL := Concatenation( ~.PackageWWWHome, "/README.md" ),
PackageInfoURL := Concatenation( ~.PackageWWWHome, "/PackageInfo.g" ),
ArchiveURL := Concatenation( ~.SourceRepository.URL,
"/releases/download/v", ~.Version,
"/", LowercaseString(~.PackageName), "-", ~.Version ),
AbstractHTML :=
Concatenation(
"The GAP package <code>QDistRnd</code> \n" ,
"implements a probabilistic algorithm for finding the \n" ,
"minimum distance of a quantum code linear over a finite\n" ,
"field GF(<var>q</var>).\n"
),
ArchiveFormats:=".tar.gz",
SupportEmail := "[email protected]",
PackageDoc := rec(
BookName := ~.PackageName,
ArchiveURLSubset := ["doc"],
HTMLStart := "doc/chap0.html",
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
# a longer title of the book, this together with the book name should
# fit on a single text line (appears with the '?books' command in GAP)
LongTitle := ~.Subtitle
),
Persons := [
rec(
LastName := "Pryadko",
FirstNames := "Leonid P.",
IsAuthor := true,
IsMaintainer := true,
Email := "[email protected]",
WWWHome := "http://faculty.ucr.edu/~leonid",
PostalAddress := Concatenation( [
"Department of Physics & Astronomy\n",
"University of California\n",
"Riverside, CA 92521\n",
"USA" ] ),
Place := "UCR",
Institution := "University of California, Riverside"
),
rec(
LastName := "Shabashov",
FirstNames := "V. A.",
IsAuthor := true,
IsMaintainer := false,
Email := "[email protected]",
WWWHome := "https://sites.google.com/view/vadim-shabashov/"
),
rec(
LastName := "Kozin",
FirstNames := "V. K.",
IsAuthor := true,
IsMaintainer := false,
Email := "[email protected]",
PostalAddress := Concatenation( [
"Department of Physics, University of Basel\n",
"Klingelbergstrasse 82, CH-4056 Basel,\n",
"Switzerland" ] ),
Institution := "University of Basel"
)
],
## 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 := "deposited",
Dependencies := rec(
GAP := "4.11",
NeededOtherPackages := [["GAPDoc", "1.5"],
["AutoDoc", "1.5"],
["Guava","3.14"]]
),
AvailabilityTest := ReturnTrue,
# BannerString := Concatenation(
# "----------------------------------------------------------------\n",
# "Loading Example ", ~.Version, "\n",
# "by ",
# JoinStringsWithSeparator( List( Filtered( ~.Persons, r -> r.IsAuthor ),
# r -> Concatenation(
# r.FirstNames, " ", r.LastName, " (", r.WWWHome, ")\n" ) ), " " ),
# "For help, type: ?Example package \n",
# "----------------------------------------------------------------\n" ),
TestFile := "tst/testall.g",
Keywords := ["QECC", "quantum code", "stabilizer code",
"quantum error correcting code", "distance"],
AutoDoc := rec(
TitlePage := rec(
Copyright := """
<Index>License</Index>
©right; 2021--2024 by L. P. Pryadko, V. K. Kozin, and V. A. Shabashov<P/>
&QDistRnd; 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 := """
We appreciate very much all past and future comments, suggestions and
contributions to this package and its documentation provided by &GAP;
users and developers.
""",
),
),
));