-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
32 lines (28 loc) · 844 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
31
import os
import os.path
import sys
from distutils import sysconfig
from distutils.core import setup
try:
import xpybutil
except:
print ''
print 'pytyle3 requires xpybutil'
print 'See: https://github.com/BurntSushi/xpybutil'
sys.exit(1)
setup(
name = 'pytyle3',
author = 'Andrew Gallant',
author_email = 'andrew@pytyle.com',
version = '3.0.0',
license = 'WTFPL',
description = 'A new and much more lightweight pytyle that supports Openbox Multihead',
long_description = 'See README',
url = 'https://github.com/BurntSushi/pytyle3',
platforms = 'POSIX',
packages = ['pt3', 'pt3/layouts'],
data_files = [('share/doc/pytyle3', ['README', 'COPYING', 'INSTALL']),
('/etc/xdg/pytyle3',
['config.py', 'keybind.py'])],
scripts = ['pytyle3']
)