-
Notifications
You must be signed in to change notification settings - Fork 1
/
PackageInfo.g
95 lines (75 loc) · 2.47 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
SetPackageInfo(rec(
PackageName := "SBStrips",
Subtitle := "for syzygies of string modules over special biserial algebras",
Version := "v0.7.0",
Date := "15/08/2022",
License := "GPL-2.0-or-later",
Persons := [
rec(
LastName := "Allen",
FirstNames := "Joe",
IsAuthor := true,
IsMaintainer := true,
Email := Concatenation([
"jo", "e.a", "llen", "@", "brist", "ol", ".", "ac", ".", "uk"
]),
WWWHome := "https://research-information.bris.ac.uk/en/persons/joe-allen",
PostalAddress := Concatenation([
"School of Mathematics,\n",
"Fry Building,\n",
"Woodland Rd, Bristol,\n",
"BS8 1UG"
]),
Place := "Bristol",
Institution := "University of Bristol"
)
],
Status := "dev",
SourceRepository := rec(
Type := "git",
URL := "https://github.com/jw-allen/sbstrips"
),
IssueTrackerURL := Concatenation(~.SourceRepository.URL, "/issues"),
PackageWWWHome := "https://jw-allen.github.io/sbstrips/",
ArchiveURL := Concatenation(
~.SourceRepository.URL,
"/archive/",
~.Version
),
ArchiveFormats := ".tar.gz",
README_URL :=
Concatenation(~.PackageWWWHome, "/README"),
PackageInfoURL :=
Concatenation(~.PackageWWWHome, "/PackageInfo.g"),
AbstractHTML :=
"String modules for special biserial (SB) algebras are represented by \
string graphs. Many modules related to a given string module, including its \
syzygy, transpose and vector-space dual and hence Auslander-Reiten translate \
and inverse translate, are also string modules. These related modules can be \
calculated combinatorially rather than algebraically. SBStrips implements \
this functionality in GAP, representing string graphs as objects called \
strips. It includes some tests for associated properties such as syzygy type, \
delooping level and weak periodicity.\n\n SBStrips also includes bookkeeping \
functionality for multisets, which it calls collected lists, and it \
integrates with (and depends on) the QPA package for quiver algebras and \
their modules.",
PackageDoc := rec(
BookName := "SBStrips",
ArchiveURLSubset := ["doc"],
HTMLStart := "doc/chap0.html",
PDFFile := "doc/main.pdf",
SixFile := "doc/manual.six",
LongTitle := ~.Subtitle
),
Dependencies := rec(
GAP := ">=4.11",
NeededOtherPackages := [
["qpa", "1.30"], ["GAPDoc", ">=1.6"]
],
SuggestedOtherPackages := [],
ExternalConditions := []
),
AvailabilityTest := ReturnTrue,
TestFile := "tst/testall.g",
Keywords := ["special biserial algebra", "string module", "syzygy"]
));