-
Notifications
You must be signed in to change notification settings - Fork 9
/
addon.xml
21 lines (21 loc) · 1.16 KB
/
addon.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.module.cherrypy"
name="CherryPy Kodi module"
version="12.0.2"
provider-name="CherryPy Team, marcelveldt and others">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
<import addon="script.module.six" version="1.14"/>
</requires>
<extension point="xbmc.python.module" library="lib" />
<extension point="xbmc.addon.metadata">
<summary>CherryPy webserver packaged as Kodi module</summary>
<description>CherryPy is a pythonic, object-oriented web framework
CherryPy allows developers to build web applications in much the same way they would build any other object-oriented Python program. This results in smaller source code developed in less time.
CherryPy is now more than ten years old and it is has proven to be very fast and stable. It is being used in production by many sites, from the simplest to the most demanding.
</description>
<license>BSD</license>
<source>https://github.com/marcelveldt/script.module.cherrypy</source>
<platform>all</platform>
</extension>
</addon>