setup.py 447 B

1234567891011121314
  1. from setuptools import setup
  2. setup(name='nodemcu-uploader',
  3. version='0.1.1',
  4. install_requires=[
  5. 'pyserial==2.7'
  6. ],
  7. scripts = ['nodemcu-uploader.py'],
  8. url='https://github.com/kmpm/nodemcu-uploader',
  9. author='kmpm',
  10. author_email='peter@birchroad.net',
  11. description='tool for uploading files to the filesystem of an ESP8266 running NodeMCU.',
  12. keywords=['esp8266', 'upload', 'nodemcu']
  13. )