forked from OzymandiasTheGreat/python-libinput
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·41 lines (32 loc) · 1.13 KB
/
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
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env python3
import os.path
from imp import load_source
from setuptools import setup
version = load_source('version', os.path.abspath('libinput/version.py'))
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as fd:
long_description = fd.read()
classifiers = [
# ~ 'Development Status :: 5 - Production/Stable',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries']
setup(
name='python-libinput',
version=version.__version__,
description='Object-oriented wrapper for libinput using ctypes',
long_description=long_description,
url='https://github.com/OzymandiasTheGreat/python-libinput',
author='Tomas Ravinskas',
license='MIT',
classifiers=classifiers,
packages=['libinput'],
package_dir={'libinput': 'libinput'},
install_requires=[
'aenum;python_version<"3.6"',
'selectors34;python_version<"3.4"'])
# ~ 'monotonic;python_version<"3.3"'])