Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

setup.py #46

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
19 changes: 19 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#!/usr/bin/env python

from setuptools import setup, find_packages


setup(name='webrepl_cli',
version='0.20190413',
description='WebREPL client for MicroPython',
author=u'MicroPython Team',
author_email='contact@micropython.org',
url='https://github.com/micropython/webrepl',
entry_points={'console_scripts': [
'webrepl-cli = webrepl_cli.cli:main'
]},
license="MIT",
keywords="micropython webrepl esp8266 esp32",
packages=find_packages(),
install_requires=[],
package_data={})
Empty file added webrepl_cli/__init__.py
Empty file.
3 changes: 2 additions & 1 deletion webrepl_cli.py → webrepl_cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
import usocket as socket
except ImportError:
import socket
import websocket_helper

from webrepl_cli import websocket_helper

# Define to 1 to use builtin "uwebsocket" module of MicroPython
USE_BUILTIN_UWEBSOCKET = 0
Expand Down
File renamed without changes.