2018-12-13 21:34:57 +01:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
"""aioesphomeapi setup script."""
|
2020-06-19 21:42:32 +02:00
|
|
|
import os
|
|
|
|
|
2018-12-13 21:34:57 +01:00
|
|
|
from setuptools import find_packages, setup
|
|
|
|
|
2020-06-19 21:42:32 +02:00
|
|
|
here = os.path.abspath(os.path.dirname(__file__))
|
|
|
|
|
2021-07-27 01:34:47 +02:00
|
|
|
with open(os.path.join(here, "README.rst"), encoding="utf-8") as readme_file:
|
2020-06-19 21:42:32 +02:00
|
|
|
long_description = readme_file.read()
|
|
|
|
|
|
|
|
|
2021-12-22 02:00:00 +01:00
|
|
|
VERSION = "10.6.1"
|
2021-07-27 01:34:47 +02:00
|
|
|
PROJECT_NAME = "aioesphomeapi"
|
|
|
|
PROJECT_PACKAGE_NAME = "aioesphomeapi"
|
|
|
|
PROJECT_LICENSE = "MIT"
|
|
|
|
PROJECT_AUTHOR = "Otto Winter"
|
|
|
|
PROJECT_COPYRIGHT = " 2019-2020, Otto Winter"
|
|
|
|
PROJECT_URL = "https://esphome.io/"
|
|
|
|
PROJECT_EMAIL = "esphome@nabucasa.com"
|
2018-12-13 21:34:57 +01:00
|
|
|
|
2021-07-27 01:34:47 +02:00
|
|
|
PROJECT_GITHUB_USERNAME = "esphome"
|
|
|
|
PROJECT_GITHUB_REPOSITORY = "aioesphomeapi"
|
2018-12-13 21:34:57 +01:00
|
|
|
|
2021-07-27 01:34:47 +02:00
|
|
|
PYPI_URL = "https://pypi.python.org/pypi/{}".format(PROJECT_PACKAGE_NAME)
|
|
|
|
GITHUB_PATH = "{}/{}".format(PROJECT_GITHUB_USERNAME, PROJECT_GITHUB_REPOSITORY)
|
|
|
|
GITHUB_URL = "https://github.com/{}".format(GITHUB_PATH)
|
2018-12-13 21:34:57 +01:00
|
|
|
|
2021-07-27 01:34:47 +02:00
|
|
|
DOWNLOAD_URL = "{}/archive/{}.zip".format(GITHUB_URL, VERSION)
|
2018-12-13 21:34:57 +01:00
|
|
|
|
2021-07-27 01:34:47 +02:00
|
|
|
with open(os.path.join(here, "requirements.txt")) as requirements_txt:
|
2020-07-15 13:41:55 +02:00
|
|
|
REQUIRES = requirements_txt.read().splitlines()
|
2018-12-13 21:34:57 +01:00
|
|
|
|
|
|
|
setup(
|
|
|
|
name=PROJECT_PACKAGE_NAME,
|
|
|
|
version=VERSION,
|
|
|
|
url=PROJECT_URL,
|
|
|
|
download_url=DOWNLOAD_URL,
|
|
|
|
author=PROJECT_AUTHOR,
|
|
|
|
author_email=PROJECT_EMAIL,
|
2021-07-27 01:34:47 +02:00
|
|
|
description="Python API for interacting with ESPHome devices.",
|
2020-06-19 21:42:32 +02:00
|
|
|
long_description=long_description,
|
2020-06-19 13:22:13 +02:00
|
|
|
license=PROJECT_LICENSE,
|
2021-07-27 01:34:47 +02:00
|
|
|
packages=find_packages(exclude=["tests", "tests.*"]),
|
2018-12-13 21:34:57 +01:00
|
|
|
include_package_data=True,
|
|
|
|
zip_safe=False,
|
|
|
|
install_requires=REQUIRES,
|
2021-07-27 01:34:47 +02:00
|
|
|
python_requires=">=3.7",
|
2021-07-12 20:09:17 +02:00
|
|
|
test_suite="tests",
|
2018-12-13 21:34:57 +01:00
|
|
|
)
|