2015-12-15 20:47:32 +00:00
|
|
|
#!/usr/bin/env python3
|
2016-12-28 18:04:59 +00:00
|
|
|
"""Home Assistant setup script."""
|
2018-06-25 13:57:26 +00:00
|
|
|
from datetime import datetime as dt
|
2018-07-01 15:48:54 +00:00
|
|
|
from setuptools import setup, find_packages
|
2018-02-20 04:51:05 +00:00
|
|
|
|
2018-02-07 20:38:06 +00:00
|
|
|
import homeassistant.const as hass_const
|
2017-11-03 14:43:30 +00:00
|
|
|
|
2019-08-01 15:30:49 +00:00
|
|
|
PROJECT_NAME = "Home Assistant"
|
|
|
|
PROJECT_PACKAGE_NAME = "homeassistant"
|
|
|
|
PROJECT_LICENSE = "Apache License 2.0"
|
|
|
|
PROJECT_AUTHOR = "The Home Assistant Authors"
|
|
|
|
PROJECT_COPYRIGHT = " 2013-{}, {}".format(dt.now().year, PROJECT_AUTHOR)
|
|
|
|
PROJECT_URL = "https://home-assistant.io/"
|
|
|
|
PROJECT_EMAIL = "hello@home-assistant.io"
|
2017-11-03 14:43:30 +00:00
|
|
|
|
2019-08-01 15:30:49 +00:00
|
|
|
PROJECT_GITHUB_USERNAME = "home-assistant"
|
|
|
|
PROJECT_GITHUB_REPOSITORY = "home-assistant"
|
2017-11-03 14:43:30 +00:00
|
|
|
|
2019-08-01 15:30:49 +00: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)
|
2017-11-03 14:43:30 +00:00
|
|
|
|
2019-08-01 15:30:49 +00:00
|
|
|
DOWNLOAD_URL = "{}/archive/{}.zip".format(GITHUB_URL, hass_const.__version__)
|
2018-06-25 13:57:26 +00:00
|
|
|
PROJECT_URLS = {
|
2019-08-01 15:30:49 +00:00
|
|
|
"Bug Reports": "{}/issues".format(GITHUB_URL),
|
|
|
|
"Dev Docs": "https://developers.home-assistant.io/",
|
|
|
|
"Discord": "https://discordapp.com/invite/c5DvZ4e",
|
|
|
|
"Forum": "https://community.home-assistant.io/",
|
2018-06-25 13:57:26 +00:00
|
|
|
}
|
2015-08-29 22:59:05 +00:00
|
|
|
|
2019-08-01 15:30:49 +00:00
|
|
|
PACKAGES = find_packages(exclude=["tests", "tests.*"])
|
2018-07-01 15:48:54 +00:00
|
|
|
|
2015-09-01 08:56:13 +00:00
|
|
|
REQUIRES = [
|
2019-08-01 15:30:49 +00:00
|
|
|
"aiohttp==3.5.4",
|
|
|
|
"astral==1.10.1",
|
|
|
|
"async_timeout==3.0.1",
|
|
|
|
"attrs==19.1.0",
|
|
|
|
"bcrypt==3.1.7",
|
|
|
|
"certifi>=2019.6.16",
|
2019-08-05 21:04:20 +00:00
|
|
|
'contextvars==2.4;python_version<"3.7"',
|
2019-08-16 18:02:24 +00:00
|
|
|
"importlib-metadata==0.19",
|
2019-08-01 15:30:49 +00:00
|
|
|
"jinja2>=2.10.1",
|
|
|
|
"PyJWT==1.7.1",
|
2018-08-14 20:02:01 +00:00
|
|
|
# PyJWT has loose dependency. We want the latest one.
|
2019-08-01 15:30:49 +00:00
|
|
|
"cryptography==2.7",
|
|
|
|
"pip>=8.0.3",
|
2019-08-16 16:28:52 +00:00
|
|
|
"python-slugify==3.0.3",
|
2019-08-16 14:15:12 +00:00
|
|
|
"pytz>=2019.02",
|
2019-08-16 20:48:44 +00:00
|
|
|
"pyyaml==5.1.2",
|
2019-08-01 15:30:49 +00:00
|
|
|
"requests==2.22.0",
|
|
|
|
"ruamel.yaml==0.15.99",
|
2019-08-16 19:31:28 +00:00
|
|
|
"voluptuous==0.11.7",
|
2019-08-17 08:40:51 +00:00
|
|
|
"voluptuous-serialize==2.2.0",
|
2015-09-01 08:56:13 +00:00
|
|
|
]
|
2015-08-30 02:19:52 +00:00
|
|
|
|
2019-08-01 15:30:49 +00:00
|
|
|
MIN_PY_VERSION = ".".join(map(str, hass_const.REQUIRED_PYTHON_VER))
|
2018-02-07 20:38:06 +00:00
|
|
|
|
2015-08-29 22:59:05 +00:00
|
|
|
setup(
|
2016-09-05 10:31:48 +00:00
|
|
|
name=PROJECT_PACKAGE_NAME,
|
2018-02-07 20:38:06 +00:00
|
|
|
version=hass_const.__version__,
|
2016-09-05 10:31:48 +00:00
|
|
|
url=PROJECT_URL,
|
2015-08-30 02:19:52 +00:00
|
|
|
download_url=DOWNLOAD_URL,
|
2018-06-25 13:57:26 +00:00
|
|
|
project_urls=PROJECT_URLS,
|
2016-09-05 10:31:48 +00:00
|
|
|
author=PROJECT_AUTHOR,
|
|
|
|
author_email=PROJECT_EMAIL,
|
2018-07-01 15:48:54 +00:00
|
|
|
packages=PACKAGES,
|
|
|
|
include_package_data=True,
|
|
|
|
zip_safe=False,
|
2015-08-30 02:19:52 +00:00
|
|
|
install_requires=REQUIRES,
|
2019-08-01 15:30:49 +00:00
|
|
|
python_requires=">={}".format(MIN_PY_VERSION),
|
|
|
|
test_suite="tests",
|
|
|
|
entry_points={"console_scripts": ["hass = homeassistant.__main__:main"]},
|
2015-08-29 22:59:05 +00:00
|
|
|
)
|