forked from python-xlib/python-xlib
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (40 loc) · 1.45 KB
/
setup.py
File metadata and controls
49 lines (40 loc) · 1.45 KB
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
42
43
44
45
46
47
48
49
# Distutils script for python-xlib
from setuptools import setup
import Xlib
setup(
name='python-xlib',
version=Xlib.__version_string__,
description='Python X Library',
download_url='https://github.com/python-xlib/python-xlib/releases',
url='https://github.com/python-xlib/python-xlib',
license='LGPLv2+',
author='Peter Liljenberg',
install_requires=['six>=1.10.0'],
setup_requires=['setuptools-scm'],
packages=[
'Xlib',
'Xlib.ext',
'Xlib.keysymdef',
'Xlib.protocol',
'Xlib.support',
'Xlib.xobject'
],
keywords='xlib x11 x windows',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: X11 Applications',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: User Interfaces',
],
)