summaryrefslogtreecommitdiffstats
path: root/PackageInfo.g
diff options
context:
space:
mode:
authorUlli Kehrle <ulli.kehrle@rwth-aachen.de>2018-11-08 11:58:26 +0100
committerUlli Kehrle <ulli.kehrle@rwth-aachen.de>2018-11-08 11:58:26 +0100
commitd3d93ebaf723d1c14faaac1062240c8ec7c1bc25 (patch)
tree88361449c26bd27688792dd539eaf0c0720c2e63 /PackageInfo.g
parentc243e3404a9bf2b9c8d2e9430f13aeee7e7d057d (diff)
downloadsubgroup-ladders-d3d93ebaf723d1c14faaac1062240c8ec7c1bc25.tar.gz
subgroup-ladders-d3d93ebaf723d1c14faaac1062240c8ec7c1bc25.tar.xz
make this a gap package.
Diffstat (limited to 'PackageInfo.g')
-rw-r--r--PackageInfo.g87
1 files changed, 87 insertions, 0 deletions
diff --git a/PackageInfo.g b/PackageInfo.g
new file mode 100644
index 0000000..702f16c
--- /dev/null
+++ b/PackageInfo.g
@@ -0,0 +1,87 @@
+#
+# subgroupladders: This package provides an algorithm that computes a subgroup ladder from a permutation group up to the parent symmetric group.
+#
+# This file contains package meta data. For additional information on
+# the meaning and correct usage of these fields, please consult the
+# manual of the "Example" package as well as the comments in its
+# PackageInfo.g file.
+#
+SetPackageInfo( rec(
+
+PackageName := "subgroupladders",
+Subtitle := "This package provides an algorithm that computes a subgroup ladder from a permutation group up to the parent symmetric group.",
+Version := "0.1",
+Date := "08/11/2018", # dd/mm/yyyy format
+
+Persons := [
+ rec(
+ IsAuthor := true,
+ IsMaintainer := true,
+ FirstNames := "Ulli",
+ LastName := "Kehrle",
+ #WWWHome := TODO,
+ Email := "ulli.kehrle@rwth-aachen.de",
+ #PostalAddress := TODO,
+ #Place := TODO,
+ #Institution := TODO,
+ ),
+ rec(
+ IsAuthor := true,
+ IsMaintainer := true,
+ FirstNames := "Friedrich",
+ LastName := "Rober",
+ #WWWHome := TODO,
+ Email := "friedrich.rober@rwth-aachen.de",
+ #PostalAddress := TODO,
+ #Place := TODO,
+ #Institution := TODO,
+ ),
+],
+
+#SourceRepository := rec( Type := "TODO", URL := "URL" ),
+#IssueTrackerURL := "TODO",
+PackageWWWHome := "https://github.com/ehwat/subgroup-ladders/",
+PackageInfoURL := Concatenation( ~.PackageWWWHome, "PackageInfo.g" ),
+README_URL := Concatenation( ~.PackageWWWHome, "README.md" ),
+ArchiveURL := Concatenation( ~.PackageWWWHome,
+ "/", ~.PackageName, "-", ~.Version ),
+
+ArchiveFormats := ".tar.gz",
+
+## Status information. Currently the following cases are recognized:
+## "accepted" for successfully refereed packages
+## "submitted" for packages submitted for the refereeing
+## "deposited" for packages for which the GAP developers agreed
+## to distribute them with the core GAP system
+## "dev" for development versions of packages
+## "other" for all other packages
+##
+Status := "dev",
+
+AbstractHTML := "",
+
+PackageDoc := rec(
+ BookName := "subgroupladders",
+ ArchiveURLSubset := ["doc"],
+ HTMLStart := "doc/chap0.html",
+ PDFFile := "doc/manual.pdf",
+ SixFile := "doc/manual.six",
+ LongTitle := "This package provides an algorithm that computes a subgroup ladder from a permutation group up to the parent symmetric group.",
+),
+
+Dependencies := rec(
+ GAP := ">= 4.9",
+ NeededOtherPackages := [ ],
+ SuggestedOtherPackages := [ ],
+ ExternalConditions := [ ],
+),
+
+AvailabilityTest := ReturnTrue,
+
+TestFile := "tst/testall.g",
+
+#Keywords := [ "TODO" ],
+
+));
+
+