-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 724 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python
from setuptools import setup
from mp import version
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",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
install_requires=["pyserial", "colorama", "websocket_client"],
packages=["mp"],
include_package_data=True,
keywords=["micropython", "shell", "file transfer", "development"],
classifiers=[],
entry_points={"console_scripts": ["mpfshell=mp.mpfshell:main"]},
)