forked from https://github.com/Evidlo/remarkable_mouse | patches include cool mapping mode that actually does proper aspect ratio conversion and fixing it for smartcard ssh setups
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

31 lines
885 B

from setuptools import setup
from remarkable_mouse import version
setup(
name='remarkable-mouse',
version=version.__version__,
packages=['remarkable_mouse'],
author="Evan Widloski",
author_email="evan@evanw.org",
description="use reMarkable as a graphics tablet",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
license="GPLv3",
keywords="remarkable tablet evdev",
url="https://github.com/evidlo/remarkable_mouse",
entry_points={
'console_scripts': [
'remarkable-mouse = remarkable_mouse.remarkable_mouse:main',
'remouse = remarkable_mouse.remarkable_mouse:main'
]
},
install_requires=[
'paramiko',
'libevdev',
'pynput',
'screeninfo'
],
classifiers=[
"Programming Language :: Python :: 3",
]
)