-
Notifications
You must be signed in to change notification settings - Fork 2
/
addon.xml
20 lines (20 loc) · 988 Bytes
/
addon.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" ?><addon id="script.module.pycaption" name="pycaption" provider-name="Aussie Add-ons" version="0.0.1">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.beautifulsoup4"/>
<import addon="script.module.future"/>
<import addon="script.module.six"/>
</requires>
<extension library="lib" point="xbmc.python.module"/>
<extension point="xbmc.addon.metadata">
<assets>
<icon>icon.png</icon>
</assets>
<summary>Python caption reading/writing module</summary>
<description>pycaption is a caption reading/writing module. Use one of the given Readers to read content into a CaptionSet object, and then use one of the Writers to output the CaptionSet into captions of your desired format.</description>
<platform>all</platform>
<source>https://github.com/pbs/pycaption</source>
<website>https://github.com/pbs/pycaption</website>
<license>Apache 2.0</license>
</extension>
</addon>