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",
]
)