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.

32 lines
885 B

5 years ago
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(),
4 years ago
long_description_content_type='text/markdown',
5 years ago
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'
5 years ago
],
classifiers=[
"Programming Language :: Python :: 3",
]
)