-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
56 lines (51 loc) · 2.21 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
from setuptools import setup
import os.path
import sys
setup(
name="ev3devrpyc",
version="1.0.1",
description="Library to remotely steer the EV3: using the RPyC protocol it forwards ev3dev(2) API calls from the PC to the EV3",
long_description="""
The ev3devrpyc package allows you to remotely steer a real EV3 from your PC.
You only need to import the 'ev3devrpyc' module at the beginning of your python program
before the ev3dev or ev3dev2 api is loaded.
Then the 'ev3devrpyc' module loads a special importer which instead of loading the ev3dev
modules from the simulator it proxies the ev3dev(2) modules on a remote EV3. So when doing
API calls to this proxied module all these calls are forwarded to the EV3. The RPyC library
is used to implement this proxy, hence the name ev3devrpyc.
For more info: https://github.com/ev3dev-python-tools/ev3devrpyc
""",
url="https://github.com/ev3dev-python-tools/ev3devrpyc",
author="Harco Kuppens",
author_email="[email protected]",
license="MIT",
classifiers=[
"Environment :: MacOS X",
"Environment :: Win32 (MS Windows)",
"Environment :: X11 Applications",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"License :: Freeware",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Education",
"Topic :: Software Development",
],
keywords="IDE education programming EV3 mindstorms lego",
platforms=["Windows", "macOS", "Linux"],
python_requires=">=3.6",
install_requires=['rpyc==4.1.2'],
py_modules=["ev3devrpyc"]
)