-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
28 lines (25 loc) · 831 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
from __future__ import print_function
import sys
from setuptools import setup
try:
from xpybutil.compat import xproto, xinerama, randr
except:
print('')
print('xpybutil requires the X Python Binding')
print('See: http://cgit.freedesktop.org/xcb/xpyb/')
print('More options: xpyb-ng:', 'https://github.com/dequis/xpyb-ng',
'and xcffib:', 'https://github.com/tych0/xcffib')
sys.exit(1)
setup(
name="xpybutil",
maintainer="Fenner Macrae",
author_email="fmacrae.dev@gmail.com",
version="0.0.6",
license="WTFPL",
description="An incomplete xcb-util port plus some extras",
long_description="See README",
url="http://github.com/BurntSushi/xpybutil",
platforms='POSIX',
packages=['xpybutil'],
data_files=[('share/doc/xpybutil', ['README.md', 'COPYING'])]
)