-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpython.xml
More file actions
51 lines (47 loc) · 2.4 KB
/
python.xml
File metadata and controls
51 lines (47 loc) · 2.4 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
<?xml version="1.0" ?>
<interface uri="https://apps.0install.net/python/python.xml" xmlns="http://zero-install.sourceforge.net/2004/injector/interface">
<name>Python</name>
<summary>interactive high-level object-oriented language</summary>
<description>
Python is an interpreted, interactive, object-oriented programming language. It
combines remarkable power with very clear syntax, and isn't difficult to learn.
It has modules, classes, exceptions, very high level data types, and dynamic
typing. There are interfaces to many system calls and libraries, as well as to
various windowing systems (Tk, Mac, MFC, GTK+, Qt, wxWindows). New built-in
modules are easily written in C or C++. Python is also usable as an extension
language for applications that need a programmable interface.</description>
<homepage>https://www.python.org/</homepage>
<needs-terminal/>
<icon href="https://apps.0install.net/python/python.png" type="image/png"/>
<icon href="https://apps.0install.net/python/python.ico" type="image/vnd.microsoft.icon"/>
<feed arch="POSIX-*" src="https://apps.0install.net/python/posix.xml"/>
<feed arch="MacOSX-*" src="https://apps.0install.net/python/macos.xml"/>
<feed arch="Windows-*" src="https://apps.0install.net/python/windows.xml"/>
<entry-point binary-name="python" command="run">
<needs-terminal/>
<name xml:lang="en">Python command-line interpreter</name>
<name xml:lang="de">Python Befehlszeileninterpreter</name>
</entry-point>
<entry-point binary-name="pythonw" command="run-gui">
<name xml:lang="en">Python GUI interpreter</name>
<name xml:lang="de">Python Grafischer Interpreter</name>
</entry-point>
<capabilities xmlns="http://0install.de/schema/desktop-integration/capabilities">
<file-type id="Python.File">
<description>Python File</description>
<verb args=""%V" %*" name="open"/>
<extension mime-type="text/plain" value=".py"/>
</file-type>
<file-type id="Python.NoConFile">
<description>Python File (no console)</description>
<verb args=""%V" %*" command="run-gui" name="open"/>
<extension mime-type="text/plain" value=".pyw"/>
</file-type>
<file-type id="Python.CompiledFile">
<description>Compiled Python File</description>
<verb args=""%V" %*" name="open"/>
<extension value=".pyc"/>
<extension value=".pyo"/>
</file-type>
</capabilities>
</interface>