-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathPackageInfo.g
64 lines (53 loc) · 1.83 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
SetPackageInfo( rec(
PackageName := "QPA",
Subtitle := "Quivers and Path Algebras",
Version := "2.0-dev",
Date := "28/06/2018",
License := "GPL-2.0-or-later",
PackageWWWHome := "http://www.math.ntnu.no/~oyvinso/QPA/",
ArchiveURL := Concatenation( ~.PackageWWWHome, "qpa-", ~.Version ),
ArchiveFormats := ".tar.gz",
Persons := [
rec(
LastName := "Skartsæterhagen",
FirstNames := "Øystein",
IsAuthor := true,
IsMaintainer := true,
Email := "[email protected]",
WWWHome := "http://www.math.ntnu.no/~oysteini/",
Place := "Trondheim",
Institution := "Norges teknisk-naturvitenskapelige universitet"
),
],
Status := "dev",
README_URL :=
Concatenation( ~.PackageWWWHome, "README" ),
PackageInfoURL :=
Concatenation( ~.PackageWWWHome, "PackageInfo.g" ),
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.",
PackageDoc := rec(
BookName := "QPA",
ArchiveURLSubset := ["doc"],
HTMLStart := "doc/chap0.html",
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
LongTitle := "Quivers and Path Algebras",
),
Dependencies := rec(
GAP := "4.5",
NeededOtherPackages := [ [ "CAP", ">=2022.05-04" ],
],
SuggestedOtherPackages := [ [ "ComplexesCategories", ">=2020.07.24" ]
],
ExternalConditions := []
),
AvailabilityTest := ReturnTrue,
TestFile := "tst/testall.tst",
Keywords := ["quiver", "path algebra"]
));