-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 806 Bytes
/
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
#!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
setup(
name="tispa",
version="0.5",
description="A pure-Python dbus controllable tiling window manager.",
classifiers=[
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GPL3 License",
"Development Status :: 1 - Alpha",
"Programming Language :: Python",
"Operating System :: Unix",
"Topic :: Desktop Environment :: Window Managers",
],
author="Felix Rohrbach",
author_email="fxrh@gmx.de",
license="GPL3",
include_package_data=True,
packages=find_packages(),
scripts=[
"bin/qsh",
"bin/tispa",
"bin/tispa-session"
],
)