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
|
#!/usr/bin/env python3
from setuptools import setup
long_description = '''
python-libevdev is a Python wrapper around the libevdev C library. It
provides a Pythonic API to read events from the Linux kernel's input device
nodes and to read and/or modify the device's state and capabilities.
The documentation is available here:
https://python-libevdev.readthedocs.io/en/latest/
'''
# When bumping the version, also bump it doc/source/conf.py
setup(name='libevdev',
version='0.12',
description='Python wrapper for libevdev',
long_description=long_description,
author='Peter Hutterer',
author_email='peter.hutterer@who-t.net',
url='https://gitlab.freedesktop.org/libevdev/python-libevdev',
packages=['libevdev'],
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Software Development',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
python_requires='>=3',
keywords='evdev input uinput libevdev')
|