Skip to content

Commit

Permalink
- initial setup.py (issue micropython#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
maho committed Apr 13, 2019
1 parent 03492fe commit b0a9c9c
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/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='[email protected]',
url='https://github.com/micropython/webrepl',
scripts=["webrepl_cli.py"],
license="MIT",
keywords="micropython webrepl esp8266 esp32",
packages=find_packages(),
install_requires=[],
package_data={})

0 comments on commit b0a9c9c

Please sign in to comment.