-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPklProject
More file actions
40 lines (36 loc) · 1.22 KB
/
PklProject
File metadata and controls
40 lines (36 loc) · 1.22 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
// ==-----------------------------------------------------------== //
// SPDX-FileCopyrightText: © 2025 Nayan Patil <nayantsg@proton.me>
//
// SPDX-License-Identifier: Apache-2.0
// ==-----------------------------------------------------------== //
amends "pkl:Project"
import "stdschema/Grimoire.pkl" as Grimoire
import "doc-package-info.pkl" as doc
package {
name = doc.name
baseUri = "package://pkg.pkl-lang.org/github.com/necronux/\(name)/\(name)"
version = Grimoire.stdSchemaVersion
packageZipUrl = "\(sourceCode)/releases/download/\(name)@\(version)/\(name)@\(version).zip"
description = "The Necronux standard schema."
authors = doc.authors
website = "https://www.necronux.net"
documentation = "https://docs.necronux.net/necronux.stdschema"
sourceCode = doc.sourceCode
sourceCodeUrlScheme = "\(sourceCode)/blob/\(name)@\(version)%{path}#L%{line}-%{endLine}"
license = "Apache-2.0"
issueTracker = doc.issueTracker
apiTests = import*("tests/**.pkl").keys.toListing()
exclude {
".github/"
"gradle/**"
"gradlew"
"gradlew.bat"
"build.gradle.kts"
"settings.gradle.kts"
"justfile"
"examples/**"
"tests/**"
"tools/**"
}
}
tests = import*("tests/**.pkl").keys.toListing()