Skip to content

Commit

Permalink
Use readme file as package long description (#615)
Browse files Browse the repository at this point in the history
  • Loading branch information
jesserockz authored Apr 29, 2024
1 parent 81efbd7 commit 7cdbaa9
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,19 @@
"""esphome-dashboard setup script."""

import os
from setuptools import setup, find_packages

here = os.path.abspath(os.path.dirname(__file__))

with open(os.path.join(here, "README.md"), encoding="utf-8") as readme:
long_description = readme.read()

setup(
name="esphome-dashboard",
version="20240429.0",
description="ESPHome dashboard",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/esphome/dashboard",
author="Nabu Casa",
author_email="[email protected]",
Expand Down

0 comments on commit 7cdbaa9

Please sign in to comment.