-
Notifications
You must be signed in to change notification settings - Fork 13
/
PackageInfo.g
97 lines (82 loc) · 3.06 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
SetPackageInfo( rec(
PackageName := "QPA",
Subtitle := "Quivers and Path Algebras",
Version := "1.35",
Date := "04/01/2024", # dd/mm/yyyy format
License := "GPL-2.0-or-later",
ArchiveURL := Concatenation( "https://folk.ntnu.no/oyvinso/QPA/qpa-",~.Version),
ArchiveFormats := ".tar.gz",
Persons := [
rec(
LastName := "Green",
FirstNames := "Edward",
IsAuthor := true,
IsMaintainer := true,
Email := "[email protected]",
WWWHome := "http://www.math.vt.edu/people/green",
PostalAddress := Concatenation( [
"Department of Mathematics\n",
"Virginia Polytechnic Institute and State University\n",
"Blacksburg, Virginia\n",
"U.S.A." ] ),
Place := "Blacksburg",
Institution := "Virginia Polytechnic Institute and State University"
),
rec(
LastName := "Solberg",
FirstNames := "Oeyvind",
IsAuthor := true,
IsMaintainer := true,
Email := "[email protected]",
WWWHome := "https://folk.ntnu.no/oyvinso/",
PostalAddress := Concatenation( [
"Department of Mathematical Sciences\n",
"NTNU\n",
"N-7491 Trondheim\n",
"Norway" ] ),
Place := "Trondheim",
Institution := "Norwegian University of Science and Technology"
)
],
Status := "deposited",
## You must provide the next two entries if and only if the status is
## "accepted" because is was successfully refereed:
# format: 'name (place)'
# CommunicatedBy := "Mike Atkinson (St. Andrews)",
#CommunicatedBy := "",
# format: mm/yyyy
# AcceptDate := "08/1999",
#AcceptDate := "",
README_URL := "https://folk.ntnu.no/oyvinso/QPA/README",
PackageInfoURL := "https://folk.ntnu.no/oyvinso/QPA/PackageInfo.g",
SourceRepository := rec(
Type := "git",
URL := "https://github.com/gap-packages/qpa"
),
IssueTrackerURL := Concatenation( ~.SourceRepository.URL, "/issues" ),
AbstractHTML := "The <span class=\"pkgname\">QPA</span> package provides data structures \
and algorithms for doing computations with finite dimensional quotients \
of path algebras, and finitely generated modules over such algebras. The \
current version of the QPA package has data structures for quivers, \
quotients of path algebras, and modules, homomorphisms and complexes of \
modules over quotients of path algebras.",
PackageWWWHome := "https://folk.ntnu.no/oyvinso/QPA/",
PackageDoc := rec(
BookName := "QPA",
ArchiveURLSubset := ["doc"],
HTMLStart := "doc/chap0_mj.html",
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
LongTitle := "Quivers and Path Algebras",
Autoload := true
),
Dependencies := rec(
GAP := ">=4.5",
NeededOtherPackages := [["GBNP", ">=0.9.5"]],
SuggestedOtherPackages := [],
ExternalConditions := []
),
AvailabilityTest := ReturnTrue,
TestFile := "tst/testall.g",
Keywords := ["quiver","path algebra"],
));