mirror of
https://github.com/esphome/esphome.git
synced 2025-01-18 10:25:56 +01:00
Add long description to setup.py
This commit is contained in:
parent
facd4f63ec
commit
725e8c69f5
1 changed files with 5 additions and 0 deletions
5
setup.py
5
setup.py
|
@ -28,6 +28,9 @@ here = os.path.abspath(os.path.dirname(__file__))
|
||||||
with open(os.path.join(here, 'requirements.txt')) as requirements_txt:
|
with open(os.path.join(here, 'requirements.txt')) as requirements_txt:
|
||||||
REQUIRES = requirements_txt.read().splitlines()
|
REQUIRES = requirements_txt.read().splitlines()
|
||||||
|
|
||||||
|
with open(os.path.join(here, 'README.md')) as readme:
|
||||||
|
LONG_DESCRIPTION = readme.read()
|
||||||
|
|
||||||
# If you have problems importing platformio and esptool as modules you can set
|
# If you have problems importing platformio and esptool as modules you can set
|
||||||
# $ESPHOME_USE_SUBPROCESS to make ESPHome call their executables instead.
|
# $ESPHOME_USE_SUBPROCESS to make ESPHome call their executables instead.
|
||||||
# This means they have to be in your $PATH.
|
# This means they have to be in your $PATH.
|
||||||
|
@ -57,6 +60,8 @@ setup(
|
||||||
author=PROJECT_AUTHOR,
|
author=PROJECT_AUTHOR,
|
||||||
author_email=PROJECT_EMAIL,
|
author_email=PROJECT_EMAIL,
|
||||||
description="Make creating custom firmwares for ESP32/ESP8266 super easy.",
|
description="Make creating custom firmwares for ESP32/ESP8266 super easy.",
|
||||||
|
long_description=LONG_DESCRIPTION,
|
||||||
|
long_description_content_type='text/markdown',
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
platforms='any',
|
platforms='any',
|
||||||
|
|
Loading…
Reference in a new issue