From ba2960846e52e9862a7d0aca69c33d29610276bb Mon Sep 17 00:00:00 2001 From: Yves Fischer Date: Sun, 25 Dec 2016 21:46:49 +0100 Subject: first version without put/get --- setup.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 setup.py (limited to 'setup.py') diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..facc0a5 --- /dev/null +++ b/setup.py @@ -0,0 +1,21 @@ +#!/usr/bin/env python3 +from setuptools import setup + +setup(name='mp-tool', + version='0.1', + description='CLI tool to interact with micropython webrepl', + author='Yves Fischer', + author_email='yvesf+git@xapek.org', + license="MIT", + packages=['mp_tool'], + scripts=['mp-tool'], + url='https://example.com/', + install_requires=['websocket_client==0.40.0'], + tests_require=[], + classifiers=[ + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Development Status :: 3 - Alpha", + "Intended Audience :: Developers", + "License :: OSI Approved :: MIT License", + ]) -- cgit v1.2.1