-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.xml
More file actions
66 lines (44 loc) · 3.67 KB
/
package.xml
File metadata and controls
66 lines (44 loc) · 3.67 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
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
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- SPDX-License-Identifier: CC0-1.0 -->
<!-- SPDX-FileNotice: Part of the Minimal addon. -->
<package format="1" xmlns="https://wiki.freecad.org/Package_Metadata">
<!-- For information about the contents of this file see
https://freecad.github.io/Addon-Academy/Topics/Structuring/Manifest/ -->
<!--[ Info ]―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――-->
<name>Minimal</name>
<description>Addon example that's easy to make your own.</description>
<version>0.1.0</version>
<date>2025-12-24</date>
<!--[ Ecosystem Requirements ]―――――――――――――――――――――――――――――――――――――――――――-->
<!--NOTE: Examples only, this Template does *not* actually require these versions -->
<freecadmin>1.1.0</freecadmin>
<pythonmin>3.11</pythonmin>
<!--[ Dependencies ]―――――――――――――――――――――――――――――――――――――――――――――――――――――-->
<!--NOTE: Examples only, this Template does *not* actually require these -->
<depend type="python">numpy</depend>
<depend type="addon">Curves</depend>
<depend type="internal">draft</depend>
<!--[ Tags ]―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――-->
<tag>Template</tag>
<tag>Minimal</tag>
<tag>Example</tag>
<!--[ Maintainers ]――――――――――――――――――――――――――――――――――――――――――――――――――――――-->
<maintainer email="you@whatever.org">Your Name Here</maintainer>
<!--[ Authors ]――――――――――――――――――――――――――――――――――――――――――――――――――――――――――-->
<author>Some other author's name here</author>
<author>Yet another author's name here</author>
<!--[ Licenses ]―――――――――――――――――――――――――――――――――――――――――――――――――――――――――-->
<license file="LICENSE-Code">PUT YOUR LICENSE SPDX ID HERE</license>
<license file="LICENSE-Assets">PUT YOUR LICENSE SPDX ID HERE</license>
<!--[ Icon ]―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――-->
<icon>freecad/Minimal/Resources/Icons/Logo.svg</icon>
<!--[ Urls ]―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――-->
<url type="documentation">https://github.com/FreeCAD/Addon-Template/tree/main/Documentation</url>
<url branch="main" type="repository">https://github.com/FreeCAD/Addon-Template</url>
<url type="bugtracker">https://github.com/FreeCAD/Addon-Template/issues</url>
<url type="readme">https://raw.githubusercontent.com/FreeCAD/Addon-Template/refs/heads/main/Resources/Documents/Overview.md</url>
<!--[ Content ]――――――――――――――――――――――――――――――――――――――――――――――――――――――――――-->
<content>
<other/>
</content>
</package>