Browse Source

Added setup.py in order to allow installation by pip

Roman Chyla 8 years ago
parent
commit
4e6370c9cc
1 changed files with 11 additions and 0 deletions
  1. 11 0
      setup.py

+ 11 - 0
setup.py

@@ -0,0 +1,11 @@
+from setuptools import setup
+
+setup(name='nodemcu-uploader',
+      version='0.1.0-beta',
+      install_requires=[
+          'pyserial>=3.0'
+      ],
+      scripts = ['nodemcu-uploader.py'],
+      url='https://github.com/kmpm/nodemcu-uploader',
+      author='kmpm'
+)