-
Notifications
You must be signed in to change notification settings - Fork 12
/
PackageInfo.g
164 lines (147 loc) · 4.85 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
155
156
157
158
159
160
161
162
#
# JupyterKernel: Jupyter kernel written in GAP
#
# 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 := "JupyterKernel",
Subtitle := "Jupyter kernel written in GAP",
Version := "1.5.1",
Date := "07/07/2024", # dd/mm/yyyy format
License := "BSD-3-Clause",
Persons := [
rec(
IsAuthor := true,
IsMaintainer := false,
FirstNames := "Markus",
LastName := "Pfeiffer",
WWWHome := "https://markusp.morphism.de/",
Email := "[email protected]",
PostalAddress := "School of Computer Science\nNorth Haugh\nSt Andrews\nFife\nKY16 9SX\nScotland",
Place := "St Andrews",
Institution := "University of St Andrews",
),
rec(
LastName := "Martins",
FirstNames := "Manuel",
IsAuthor := true,
IsMaintainer := false,
Email := "[email protected]",
WWWHome := "https://github.com/mcmartins",
Institution := "Universidade Aberta",
Place := "Lisbon, PT"
),
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 := "GAP Team",
FirstNames := "The",
IsAuthor := false,
IsMaintainer := true,
Email := "[email protected]",
),
# contributors
rec(
LastName := "Breuer",
FirstNames := "Thomas",
IsAuthor := false,
IsMaintainer := false,
),
rec(
LastName := "García-Sánchez",
FirstNames := "Pedro",
IsAuthor := false,
IsMaintainer := false,
),
rec(
LastName := "Gutsche",
FirstNames := "Sebastian",
IsAuthor := false,
IsMaintainer := false,
),
rec(
LastName := "Horn",
FirstNames := "Max",
IsAuthor := false,
IsMaintainer := false,
),
rec(
LastName := "Isuru",
FirstNames := "Fernando",
IsAuthor := false,
IsMaintainer := false,
),
rec(
LastName := "Newbery",
FirstNames := "Zachariah",
IsAuthor := false,
IsMaintainer := false,
),
rec(
LastName := "Siccha",
FirstNames := "Sergio",
IsAuthor := false,
IsMaintainer := false,
),
],
SourceRepository := rec(
Type := "git",
URL := Concatenation( "https://github.com/gap-packages/", ~.PackageName ),
),
IssueTrackerURL := Concatenation( ~.SourceRepository.URL, "/issues" ),
PackageWWWHome := "https://gap-packages.github.io/JupyterKernel/",
ArchiveURL := Concatenation("https://github.com/gap-packages/JupyterKernel/",
"releases/download/v", ~.Version,
"/JupyterKernel-", ~.Version),
README_URL := Concatenation( ~.PackageWWWHome, "README.md" ),
PackageInfoURL := Concatenation( ~.PackageWWWHome, "PackageInfo.g" ),
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 := "deposited",
AbstractHTML := "The <span class=\"pkgname\">JupyterKernel</span> package provides a so-called kernel for the Jupyter interactive document system.",
PackageDoc := rec(
BookName := "JupyterKernel",
ArchiveURLSubset := ["doc"],
HTMLStart := "doc/chap0_mj.html",
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
LongTitle := "Jupyter kernel written in GAP",
),
Dependencies := rec(
GAP := ">= 4.10",
NeededOtherPackages := [ [ "GAPDoc", ">= 1.6.1" ]
, [ "io", ">= 4.5.4" ]
, [ "json", ">= 2.0.0" ]
, [ "uuid", ">= 0.6" ]
, [ "ZeroMQInterface", ">= 0.10" ]
, [ "crypting", ">= 0.9"] ],
SuggestedOtherPackages := [ ],
ExternalConditions := [ [ "Jupyter", "https://jupyter.org/install" ] ],
),
AvailabilityTest := ReturnTrue,
TestFile := "tst/testinstall.g",
Keywords := [ "Jupyter", "User Interface" ],
));