Skip to content

Commit b0a9c9c

Browse files
committed
- initial setup.py (issue micropython#31)
1 parent 03492fe commit b0a9c9c

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

Diff for: setup.py

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#!/usr/bin/env python
2+
3+
from setuptools import setup, find_packages
4+
5+
6+
setup(name='webrepl_cli',
7+
version='0.20190413',
8+
description='WebREPL client for MicroPython',
9+
author=u'MicroPython Team',
10+
author_email='[email protected]',
11+
url='https://github.com/micropython/webrepl',
12+
scripts=["webrepl_cli.py"],
13+
license="MIT",
14+
keywords="micropython webrepl esp8266 esp32",
15+
packages=find_packages(),
16+
install_requires=[],
17+
package_data={})

0 commit comments

Comments
 (0)