diff options
author | orangerot <orangerot@orangerot.dev> | 2025-09-09 13:18:10 +0200 |
---|---|---|
committer | orangerot <orangerot@orangerot.dev> | 2025-09-09 13:18:10 +0200 |
commit | 2ed73f8bf490c946915547fff63b3be1c659890b (patch) | |
tree | 3a2c9c1724662171f334dcd874fda69fe4d349d6 /typst.toml | |
parent | c6e566775daa8c77b1a9108ef2bfd1d9c1146b9d (diff) |
feat: package definiton with library and template
Diffstat (limited to 'typst.toml')
-rw-r--r-- | typst.toml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/typst.toml b/typst.toml new file mode 100644 index 0000000..214049d --- /dev/null +++ b/typst.toml @@ -0,0 +1,23 @@ +# for a description of available keys, see https://github.com/typst/packages/?tab=readme-ov-file#package-format + +[package] +name = "fsmi-exam-report" +version = "0.1.0" +entrypoint = "src/lib.typ" +authors = [ + "Gero Beckmann <orangerot@orangerot.dev>" +] +license = "MIT" +description = "Exam Reports for Fachschaft Mathematik/Informatik at the Karlsruhe Institute of Technology" +homepage = "" +repository = "" +keywords = [] +categories = [] +disciplines = [] +# compiler = "" + +[template] +path = "template" +entrypoint = "main.typ" +# thumbnail = "thumbnail.png" + |