-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaddon.xml
More file actions
24 lines (21 loc) · 1 KB
/
addon.xml
File metadata and controls
24 lines (21 loc) · 1 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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.module.pyscrypt"
name="PyScrypt"
version="1.6.2"
provider-name="ricmoo">
<requires>
<import addon="xbmc.python" version="2.26.0"/>
</requires>
<extension point="xbmc.python.module" library="lib" />
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Pure-Python Implementation of the scrypt password-based key derivation function and scrypt file format library</summary>
<description lang="en_GB">A very simple, pure-Python implementation of the scrypt password-based key derivation function and scrypt file format library with no dependencies beyond standard Python libraries.</description>
<platform>all</platform>
<license>MIT</license>
<website>https://github.com/ricmoo/pyscrypt</website>
<source>https://github.com/ricmoo/pyscrypt</source>
<assets>
<icon>resources/icon.png</icon>
</assets>
</extension>
</addon>