cortesi / qtile

A small, flexible, scriptable tiling window manager written in Python

This URL has Read+Write access

qtile / setup.py
100644 47 lines (40 sloc) 1.446 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
import platform, sys
from distutils.core import setup
 
long_description = """
A pure-Python tiling window manager.
 
Features
========
 
* Simple, small and extensible. It's easy to write your own layouts,
widgets and commands.
* Configured in Python.
* Command shell that allows all aspects of Qtile to be managed and inspected.
* Complete remote scriptability - write scripts to set up workspaces,
manipulate windows, update status bar widgets and more.
* Qtile's remote scriptability makes it one of the most thoroughly
unit-tested window mangers around.
 
Qtile depends on the Python X Library (http://python-xlib.sourceforge.net/).
"""
 
 
setup(
        name = "qtile",
        version = "0.2",
        description="A pure-Python tiling window manager.",
        author="Aldo Cortesi",
        author_email="aldo@nullcube.com",
        license="MIT",
        url="http://www.qtile.org",
        packages = [
        "libqtile",
        "libqtile.layout",
        "libqtile.layout.sublayout",
        "libqtile.widget"
        ],
        scripts = ["qtile", "qsh"],
        classifiers = [
            "Intended Audience :: End Users/Desktop",
            "License :: OSI Approved :: MIT License",
            "Development Status :: 3 - Alpha",
            "Programming Language :: Python",
            "Operating System :: Unix",
            "Topic :: Desktop Environment :: Window Managers",
        ]
)