forked from paradoxxxzero/qtile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (35 loc) · 1.34 KB
/
setup.py
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
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="[email protected]",
license="MIT",
url="http://www.qtile.org",
packages = ["libqtile", "libqtile.layout", "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",
]
)