forked from wendlers/mpfshell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (16 loc) · 644 Bytes
/
Copy pathsetup.py
File metadata and controls
18 lines (16 loc) · 644 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env python
from mp import version
from distutils.core import setup
setup(name='mpfshell',
version=version.FULL,
description='A simple shell based file explorer for ESP8266 and WiPy Micropython devices.',
author='Stefan Wendler',
author_email='sw@kaltpost.de',
url='https://github.com/wendlers/mpfshell',
download_url='https://github.com/wendlers/mpfshell/archive/0.8.1.tar.gz',
install_requires=['pyserial', 'colorama', 'websocket_client'],
packages=['mp'],
scripts=['mpfshell'],
keywords=['micropython', 'shell', 'file transfer', 'development'],
classifiers=[],
)