summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py21
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",
+ ])