diff options
author | Yves Fischer <yvesf-git@xapek.org> | 2016-12-25 21:46:49 +0100 |
---|---|---|
committer | Yves Fischer <yvesf-git@xapek.org> | 2016-12-25 21:49:39 +0100 |
commit | ba2960846e52e9862a7d0aca69c33d29610276bb (patch) | |
tree | 495d615d4312de2c446f6a63a06dd74904312de4 /setup.py | |
download | mp-tool-ba2960846e52e9862a7d0aca69c33d29610276bb.tar.gz mp-tool-ba2960846e52e9862a7d0aca69c33d29610276bb.zip |
first version without put/get
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 21 |
1 files changed, 21 insertions, 0 deletions
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", + ]) |