-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackageInfo.g
More file actions
112 lines (98 loc) · 3.61 KB
/
PackageInfo.g
File metadata and controls
112 lines (98 loc) · 3.61 KB
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
#####################################################################################
#
# PackageInfo.g Serena Cicalo and Willem de Graaf
#
#
# The package LieRing is free software; you can redistribute it and/or modify it under the
# terms of the GNU General Public License as published by the Free Software Foundation;
# either version 2 of the License, or (at your option) any later version.
SetPackageInfo( rec(
PackageName := "LieRing",
Subtitle := "Computing with finitely presented Lie rings",
Version := "2.4.2",
Date := "10/02/2022", # dd/mm/yyyy format
License := "GPL-2.0-or-later",
Persons := [
rec(
LastName := "Cicalò",
FirstNames := "Serena",
IsAuthor := true,
IsMaintainer := true,
Email := "cicalo@science.unitn.it",
PostalAddress := Concatenation( [
"Serena Cicalò\n",
"Dipartimento di Matematica e Informatica\n",
"Via Ospedale 72\n",
"Italy" ]),
Place := "Cagliari",
Institution := "Universita' di Cagliari"
),
rec(
LastName := "de Graaf",
FirstNames := "Willem Adriaan",
IsAuthor := true,
IsMaintainer := true,
Email := "degraaf@science.unitn.it",
WWWHome := "http://www.science.unitn.it/~degraaf",
Place := "Trento",
Institution := "Dipartimento di Matematica"
),
rec(
LastName := "GAP Team",
FirstNames := "The",
IsAuthor := false,
IsMaintainer := true,
Email := "support@gap-system.org",
),
],
Status := "accepted",
CommunicatedBy := "Max Neunhoeffer (Cologne)",
AcceptDate := "12/2013",
PackageWWWHome := "https://gap-packages.github.io/liering/",
README_URL := Concatenation( ~.PackageWWWHome, "README.md" ),
PackageInfoURL := Concatenation( ~.PackageWWWHome, "PackageInfo.g" ),
SourceRepository := rec(
Type := "git",
URL := "https://github.com/gap-packages/liering",
),
IssueTrackerURL := Concatenation( ~.SourceRepository.URL, "/issues" ),
ArchiveURL := Concatenation( ~.SourceRepository.URL,
"/releases/download/v", ~.Version,
"/liering-", ~.Version ),
ArchiveFormats := ".tar.gz",
PackageDoc := rec(
BookName := "LieRing",
ArchiveURLSubset := ["doc"],
HTMLStart := "doc/chap0_mj.html",
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
LongTitle := "Computing with finitely presented Lie rings",
),
AbstractHTML := "The package <span class=\"pkgname\">LieRing</span> contains \
functionality for working with finitely presented Lie rings and the \
Lazard correspondence.",
Dependencies := rec(
GAP := ">=4.8",
NeededOtherPackages:= [ ],
SuggestedOtherPackages := [ ],
ExternalConditions := []
),
AvailabilityTest := ReturnTrue,
# the banner
BannerString := "LieRing\n a package for working with Lie rings \n by Serena Cicalò and Willem de Graaf\n",
TestFile := "tst/testall.g",
Keywords := ["Lie rings","Lazard correspondence"],
AutoDoc := rec(
TitlePage := rec(
Version := Concatenation( "Version ", ~.Version ),
Abstract := """
This package provides functions for constructing and working with Lie
rings. There are functions for dealing with finitely-presented Lie
rings, and for performing the Lazard correspondence. The package also
contains a small database of finitely-generated Lie rings satisfying
an Engel condition.
""",
Copyright := "©right; 2016 Serena Cicalò and Willem de Graaf",
),
),
));