forked from Evidlo/remarkable_sim
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 750 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 750 Bytes
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
from setuptools import setup
import os
setup(
name='remarkable-sim',
version='1.0.5',
packages=['remarkable_sim'],
author="Evan Widloski",
author_email="evan@evanw.org",
description="evdev/framebuffer simulation for reMarkable desktop development",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
license="GPLv3",
keywords="remarkable evdev sim simulator simulation tablet",
url="https://github.com/evidlo/remarkable_sim",
entry_points={
'console_scripts': [
'resim = remarkable_sim.sim:main',
'remarkable_sim = remarkable_sim.sim:main'
]
},
classifiers=[
"Programming Language :: Python :: 3",
]
)