mirror of
https://github.com/esphome/aioesphomeapi.git
synced 2024-12-21 16:37:41 +01:00
Use content of README file
This commit is contained in:
parent
a9192898e4
commit
5cce2d5205
12
setup.py
12
setup.py
@ -1,13 +1,21 @@
|
||||
#!/usr/bin/env python3
|
||||
"""aioesphomeapi setup script."""
|
||||
import os
|
||||
|
||||
from setuptools import find_packages, setup
|
||||
|
||||
here = os.path.abspath(os.path.dirname(__file__))
|
||||
|
||||
with open(os.path.join(here, 'README.rst'), encoding='utf-8') as readme_file:
|
||||
long_description = readme_file.read()
|
||||
|
||||
|
||||
VERSION = '2.6.1'
|
||||
PROJECT_NAME = 'aioesphomeapi'
|
||||
PROJECT_PACKAGE_NAME = 'aioesphomeapi'
|
||||
PROJECT_LICENSE = 'MIT'
|
||||
PROJECT_AUTHOR = 'Otto Winter'
|
||||
PROJECT_COPYRIGHT = ' 2019, Otto Winter'
|
||||
PROJECT_COPYRIGHT = ' 2019-2020, Otto Winter'
|
||||
PROJECT_URL = 'https://esphome.io/'
|
||||
PROJECT_EMAIL = 'contact@otto-winter.com'
|
||||
|
||||
@ -36,6 +44,8 @@ setup(
|
||||
download_url=DOWNLOAD_URL,
|
||||
author=PROJECT_AUTHOR,
|
||||
author_email=PROJECT_EMAIL,
|
||||
description='Python API for interacting with ESPHome devices.',
|
||||
long_description=long_description,
|
||||
packages=find_packages(),
|
||||
include_package_data=True,
|
||||
zip_safe=False,
|
||||
|
Loading…
Reference in New Issue
Block a user