-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathPackageInfo.g
96 lines (78 loc) · 2.76 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
#############################################################################
##
## PackageInfo.g SparseMatrices package
## Martin Bies
##
## Copyright 2021 University of Pennsylvania
##
## A package to handle sparse matrices in gap
##
#############################################################################
SetPackageInfo( rec(
PackageName := "SparseMatrices",
Subtitle := "A package to handle sparse matrices in gap",
Version := Maximum( [
"2022.07.13",
] ),
Date := ~.Version{[ 1 .. 10 ]},
Date := Concatenation( ~.Date{[ 9, 10 ]}, "/", ~.Date{[ 6, 7 ]}, "/", ~.Date{[ 1 .. 4 ]} ),
License := "GPL-2.0-or-later",
Persons := [
rec(
LastName := "Bies",
FirstNames := "Martin",
IsAuthor := true,
IsMaintainer := true,
Email := "[email protected]",
WWWHome := "https://martinbies.github.io/",
PostalAddress := Concatenation(
"Department of Mathematics \n",
"University of Pennsylvania \n",
"David Rittenhouse Laboratory \n",
"209 S 33rd St \n",
"Philadelphia \n",
"PA 19104" ),
Place := "Philadelphia",
Institution := "University of Pennsylvania"
),
],
Status := "dev",
SourceRepository := rec(
Type := "git",
URL := "https://github.com/homalg-project/ToricVarieties_project",
),
IssueTrackerURL := Concatenation( ~.SourceRepository.URL, "/issues" ),
PackageWWWHome := Concatenation( "https://homalg-project.github.io/ToricVarieties_project/", ~.PackageName ),
ArchiveFormats := ".tar.gz",
ArchiveURL := Concatenation( ~.SourceRepository.URL,
"/releases/download/", ReplacedString( ~.Version, ".", "-"),
"/", ~.PackageName, "-", ~.Version ),
README_URL := Concatenation( ~.PackageWWWHome, "/README.md" ),
PackageInfoURL := Concatenation( ~.PackageWWWHome, "/PackageInfo.g" ),
AbstractHTML := "SparseMatrices enables to handle sparse matrices in gap",
PackageDoc := rec(
BookName := "SparseMatrices",
ArchiveURLSubset := ["doc"],
HTMLStart := "doc/chap0.html",
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
LongTitle := "A package to handle sparse matrices in gap",
),
Dependencies := rec(
GAP := ">=4.7",
NeededOtherPackages := [ [ "AutoDoc", ">=2016.02.16" ],
],
SuggestedOtherPackages := [ ],
ExternalConditions := []
),
AvailabilityTest := ReturnTrue,
Keywords := [ "Sparse matrices", "Linear Algebra" ],
AutoDoc := rec(
TitlePage := rec(
Copyright := """
This package may be distributed under the terms and conditions
of the GNU Public License Version 2 or (at your option) any later version.
"""
),
),
));