Skip to content

Commit

Permalink
esptool v2.0 final release
Browse files Browse the repository at this point in the history
  • Loading branch information
projectgus committed Jun 14, 2017
1 parent 0228f57 commit 582a069
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
include README.md
include LICENSE
# sdist includes test/test*.py by default, but esptool.py tests
# are so far only intended to run from the git repo itself
exclude test/*.py
2 changes: 1 addition & 1 deletion esptool.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
import zlib
import shlex

__version__ = "2.0-beta3"
__version__ = "2.0"

MAX_UINT32 = 0xffffffff
MAX_UINT24 = 0xffffff
Expand Down
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def find_version(*file_paths):
==========
esptool.py
==========
A command line utility to communicate with the ROM bootloader in Espressif ESP8266 WiFi microcontroller.
A command line utility to communicate with the ROM bootloader in Espressif ESP8266 & ESP32 microcontrollers.
Allows flashing firmware, reading back firmware, querying chip parameters, etc.
Expand All @@ -44,6 +44,8 @@ def find_version(*file_paths):
Since version 1.3, esptool supports both Python 2.7 and Python 3.4 or newer.
Since version 2.0, esptool supports both ESP8266 & ESP32.
Usage
-----
Expand Down Expand Up @@ -77,7 +79,7 @@ def find_version(*file_paths):
name='esptool',
py_modules=['esptool', 'espsecure', 'espefuse'],
version=find_version('esptool.py'),
description='A utility to communicate with the ROM bootloader in Espressif ESP8266.',
description='A serial utility to communicate & flash code to Espressif ESP8266 & ESP32 chips.',
long_description=long_description,
url='https://github.com/espressif/esptool',
author='Fredrik Ahlberg (themadinventor) & Angus Gratton (projectgus)',
Expand Down

0 comments on commit 582a069

Please sign in to comment.