-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPackageInfo.g
More file actions
124 lines (106 loc) · 3.81 KB
/
PackageInfo.g
File metadata and controls
124 lines (106 loc) · 3.81 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
#############################################################################
##
## PackageInfo.g for the package `Thelma' Victor Bovdi
## Vasyl Laver
##
##
SetPackageInfo( rec(
PackageName := "Thelma",
Subtitle := "THreshold ELements, Modeling and Applications",
Version := "1.3",
Date := "03/03/2022",
License := "GPL-2.0-or-later",
PackageWWWHome := Concatenation( "https://gap-packages.github.io/", ~.PackageName ),
SourceRepository := rec(
Type := "git",
URL := Concatenation( "https://github.com/gap-packages/", ~.PackageName ),
),
IssueTrackerURL := Concatenation( ~.SourceRepository.URL, "/issues" ),
ArchiveURL := Concatenation( ~.SourceRepository.URL,
"/releases/download/v", ~.Version,
"/", ~.PackageName, "-", ~.Version ),
ArchiveFormats := ".tar.gz",
Persons := [
rec(
LastName := "Bovdi",
FirstNames := "Victor",
IsAuthor := true,
IsMaintainer := false,
Email := "vbovdi@gmail.com",
PostalAddress := """
Department of Mathematical Sciences
UAEU
Al Ain, United Arab Emirates""",
Place := "Al Ain",
Institution := "UAE University"
),
rec(
LastName := "Laver",
FirstNames := "Vasyl",
IsAuthor := true,
IsMaintainer := true,
Email := "vasyl.laver@uzhnu.edu.ua",
PostalAddress := """
Department of Mathematical Sciences
UAEU
Al Ain, United Arab Emirates""",
Place := "Al Ain",
Institution := "UAE University"
),
],
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 := "Edmund Robertson (St. Andrews)",
# format: mm/yyyy
# AcceptDate := "08/1999",
#AcceptDate := "09/2004",
README_URL :=
Concatenation( ~.PackageWWWHome, "/README.md" ),
PackageInfoURL :=
Concatenation( ~.PackageWWWHome, "/PackageInfo.g" ),
AbstractHTML :=
"The <span class=\"pkgname\">Thelma</span> package is package with algorithms to deal with threshold elements.",
PackageDoc := rec(
BookName := ~.PackageName,
ArchiveURLSubset := ["doc"],
HTMLStart := "doc/chap0_mj.html",
PDFFile := "doc/manual.pdf",
# the path to the .six file used by GAP's help system
SixFile := "doc/manual.six",
# a longer title of the book, this together with the book name should
# fit on a single text line (appears with the '?books' command in GAP)
LongTitle := ~.Subtitle,
),
Dependencies := rec(
GAP := ">= 4.10",
NeededOtherPackages := [["GAPDoc", "1.5"],["Gauss","2018.09.08"]],
SuggestedOtherPackages := [],
ExternalConditions := []
),
AvailabilityTest := ReturnTrue,
BannerString := Concatenation(
"----------------------------------------------------------------\n",
"Loading Thelma ", ~.Version, ", a package for threshold logic\n",
# "by ", ~.Persons[1].FirstNames, " ", ~.Persons[1].LastName,",\n",
# " (", ~.Persons[1].WWWHome, ")\n",
# " ", ~.Persons[2].FirstNames, " ", ~.Persons[2].LastName,".\n"
# " (", ~.Persons[2].WWWHome, ")\n",
# " ", ~.Persons[3].FirstNames, " ", ~.Persons[3].LastName,"\n",
# " (", ~.Persons[3].WWWHome, ")\n",
"For help, type: ?Thelma: \n",
"----------------------------------------------------------------\n" ),
TestFile := "tst/testall.g",
Keywords := ["threshold elements", "neural networks", "threshold logic"],
AutoDoc := rec(
TitlePage := rec(
Copyright := """
©right; 2018 by the authors<P/>
This package may be distributed under the terms and conditions of the
GNU Public License Version 2 or higher.
""",
)
),
));