Selaa lähdekoodia

Added setup.py in order to allow installation by pip

Roman Chyla 8 vuotta sitten
vanhempi
commit
4e6370c9cc
1 muutettua tiedostoa jossa 11 lisäystä ja 0 poistoa
  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'
+)