-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackageInfo.g
More file actions
125 lines (111 loc) · 3.74 KB
/
PackageInfo.g
File metadata and controls
125 lines (111 loc) · 3.74 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
#####################################################################################
#
# PackageInfo.g Heiko Dietrich, Paolo Faccin, and Willem de Graaf
#
#
# The package CoReLG 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 := "CoReLG",
Subtitle := "Computing with real Lie algebras",
Version := "1.57",
Date := "07/07/2024", # this is in dd/mm/yyyy format
License := "GPL-2.0-or-later",
Persons := [
rec(
LastName := "Dietrich",
FirstNames := "Heiko",
IsAuthor := true,
IsMaintainer := true,
Email := "heiko.dietrich@monash.edu",
WWWHome := "http://users.monash.edu.au/~heikod/",
PostalAddress :=
"""School of Mathematics
Monash University
Wellington Road 1
VIC 3800, Melbourne, Australia""",
Place := "Melbourne",
Institution := "School of Mathematical Sciences, Monash University"
),
rec(
LastName := "Faccin",
FirstNames := "Paolo",
IsAuthor := true,
IsMaintainer := true,
Email := "paolofaccin86@gmail.com",
PostalAddress :=
"""Dipartimento di Matematica
Via Sommarive 14
I-38050 Povo (Trento), Italy
""",
Place := "Trento",
Institution := "Dipartimento di Matematica, University of Trento"
),
rec(
LastName := "de Graaf",
FirstNames := "Willem",
IsAuthor := true,
IsMaintainer := true,
Email := "degraaf@science.unitn.it",
WWWHome := "https://www.science.unitn.it/~degraaf",
PostalAddress :=
"""Dipartimento di Matematica
Via Sommarive 14
I-38050 Povo (Trento), Italy
""",
Place := "Trento",
Institution := "Dipartimento di Matematica, University of Trento"
)
],
Status := "accepted",
CommunicatedBy := "Bettina Eick (Braunschweig)",
AcceptDate := "01/2014",
PackageWWWHome := "https://gap-packages.github.io/corelg/",
README_URL := Concatenation( ~.PackageWWWHome, "README.md" ),
PackageInfoURL := Concatenation( ~.PackageWWWHome, "PackageInfo.g" ),
SourceRepository := rec(
Type := "git",
URL := "https://github.com/gap-packages/corelg",
),
IssueTrackerURL := Concatenation( ~.SourceRepository.URL, "/issues" ),
ArchiveURL := Concatenation( ~.SourceRepository.URL,
"/releases/download/v", ~.Version,
"/corelg-", ~.Version ),
ArchiveFormats := ".tar.gz",
PackageDoc := rec( BookName := "CoReLG" ,
ArchiveURLSubset := ["doc"],
HTMLStart := "doc/chap0_mj.html",
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
LongTitle := "Computing with real Lie algebras",
),
AbstractHTML := "The package <span class=\"pkgname\">CoReLG</span> contains \
functionality for working with real semisimple Lie algebras.",
Dependencies := rec(
GAP := ">=4.12",
NeededOtherPackages:= [ ["sla", ">=1.6"] ],
SuggestedOtherPackages := [ ],
ExternalConditions := []
),
AvailabilityTest := ReturnTrue,
TestFile := "tst/testall.g",
Keywords := ["real Lie algebras","nilpotent orbits Cartan subalgebras"],
AutoDoc := rec(
TitlePage := rec(
Version := Concatenation( "Version ", ~.Version ),
Abstract := """
This package provides functions for computing with various
aspects of the theory of real simple Lie algebras.
""",
Acknowledgements := """
The research leading to this package has received funding from
the European Union's Seventh Framework Program FP7/2007-2013
under grant agreement no 271712, and from the Australian Research
Council, grantor code DE140100088 and DP190100317.
""",
Copyright := "©right; 2013-2019 Heiko Dietrich, Paolo Faccin, and Willem de Graaf",
),
),
));