forked from python-xlib/python-xlib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (24 loc) · 759 Bytes
/
setup.py
File metadata and controls
32 lines (24 loc) · 759 Bytes
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
# Distutils script for python-xlib
from distutils.core import setup
import sys
if sys.version < '2.3.3':
from distutils.dist import DistributionMetadata
DistributionMetadata.download_url = None
import Xlib
setup(name='python-xlib',
version=Xlib.__version_string__,
description='Python X Library',
download_url='http://sourceforge.net/projects/python-xlib/files/',
url='http://python-xlib.sourceforge.net/',
license='GPL',
author='Peter Liljenberg',
packages=[
'Xlib',
'Xlib.ext',
'Xlib.keysymdef',
'Xlib.protocol',
'Xlib.support',
'Xlib.xobject'
],
)