-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgleam.nuspec
36 lines (34 loc) · 1.69 KB
/
gleam.nuspec
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
<?xml version="1.0" encoding="utf-8"?>
<!-- Do not remove this test for UTF-8: if “Ω” doesn’t appear as greek uppercase omega letter enclosed in quotation marks, you should use an editor that supports UTF-8, not this one. -->
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<!-- == PACKAGE SPECIFIC SECTION == -->
<id>gleam</id>
<version>1.6.2</version>
<packageSourceUrl>https://github.com/gleam-community/gleam-chocolatey</packageSourceUrl>
<owners>HarryET aslilac</owners>
<!-- ============================== -->
<!-- == SOFTWARE SPECIFIC SECTION == -->
<title>Gleam Language</title>
<authors>https://github.com/gleam-lang/gleam/contributors</authors>
<projectUrl>https://gleam.run</projectUrl>
<iconUrl>https://raw.githubusercontent.com/gleam-community/gleam-chocolatey/main/choco-icon.png</iconUrl>
<licenseUrl>https://github.com/gleam-lang/gleam/blob/main/LICENCE</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<projectSourceUrl>https://github.com/gleam-lang/gleam</projectSourceUrl>
<docsUrl>https://gleam.run/documentation/</docsUrl>
<tags>gleam erlang javascript</tags>
<summary>A friendly language for building type-safe systems that scale</summary>
<description>
The power of a type system, the expressiveness of functional programming, and the reliability
of the highly concurrent, fault tolerant Erlang runtime, with a familiar and modern syntax.
</description>
<!-- =============================== -->
<dependencies>
<dependency id="erlang" />
</dependencies>
</metadata>
<files>
<file src="tools\**" target="tools" />
</files>
</package>