-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
29 lines (25 loc) · 869 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
29
""" Type "<esc>a" on the press of a footpedal, and "<esc>" on a release.
"""
from setuptools import setup, find_packages
setup(
name='vim-clutchify',
version='0.0.11',
description='vim-clutch evdev bindings for USB foot pedal. Linux only.',
long_description="""
Scans evdev for something that looks like a foot pedal.
Listens for keyup and keydown.
Emits a uinput <esc>a on keydown and uinput <esc> on a keyup.
That's it!
See https://github.com/alevchuk/vim-clutch
""",
author='twitchard',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha'
],
keywords='vim evdev footpedal footswitch vim-clutch clutch',
packages=find_packages(),
install_requires=['evdev'],
scripts=['bin/vim-clutchify']
)