2018-06-25 15:57:26 +02:00
|
|
|
[metadata]
|
2022-01-29 05:18:09 +01:00
|
|
|
name = homeassistant
|
2022-04-27 17:34:34 +02:00
|
|
|
version = 2022.6.0.dev0
|
2022-01-29 05:18:09 +01:00
|
|
|
author = The Home Assistant Authors
|
|
|
|
author_email = hello@home-assistant.io
|
2021-03-17 14:32:13 +01:00
|
|
|
license = Apache-2.0
|
2018-06-25 15:57:26 +02:00
|
|
|
platforms = any
|
|
|
|
description = Open-source home automation platform running on Python 3.
|
|
|
|
long_description = file: README.rst
|
2022-01-29 05:18:09 +01:00
|
|
|
long_description_content_type = text/x-rst
|
2018-06-25 15:57:26 +02:00
|
|
|
keywords = home, automation
|
2022-01-28 17:11:46 +01:00
|
|
|
url = https://www.home-assistant.io/
|
|
|
|
project_urls =
|
|
|
|
Source Code = https://github.com/home-assistant/core
|
|
|
|
Bug Reports = https://github.com/home-assistant/core/issues
|
|
|
|
Docs: Dev = https://developers.home-assistant.io/
|
|
|
|
Discord = https://discordapp.com/invite/c5DvZ4e
|
|
|
|
Forum = https://community.home-assistant.io/
|
2018-06-25 15:57:26 +02:00
|
|
|
classifier =
|
|
|
|
Development Status :: 4 - Beta
|
|
|
|
Intended Audience :: End Users/Desktop
|
|
|
|
Intended Audience :: Developers
|
|
|
|
License :: OSI Approved :: Apache Software License
|
|
|
|
Operating System :: OS Independent
|
2021-01-04 12:47:29 +02:00
|
|
|
Programming Language :: Python :: 3.9
|
2018-06-25 15:57:26 +02:00
|
|
|
Topic :: Home Automation
|
|
|
|
|
2022-01-28 07:34:18 +01:00
|
|
|
[options]
|
2022-01-29 05:18:09 +01:00
|
|
|
packages = find:
|
|
|
|
zip_safe = False
|
|
|
|
include_package_data = True
|
2022-01-28 13:36:20 +01:00
|
|
|
python_requires = >=3.9.0
|
2022-01-28 07:34:18 +01:00
|
|
|
install_requires =
|
|
|
|
aiohttp==3.8.1
|
|
|
|
astral==2.2
|
|
|
|
async_timeout==4.0.2
|
|
|
|
attrs==21.2.0
|
|
|
|
atomicwrites==1.4.0
|
2022-02-23 13:37:07 +01:00
|
|
|
awesomeversion==22.2.0
|
2022-01-28 07:34:18 +01:00
|
|
|
bcrypt==3.1.7
|
|
|
|
certifi>=2021.5.30
|
|
|
|
ciso8601==2.2.0
|
|
|
|
# When bumping httpx, please check the version pins of
|
|
|
|
# httpcore, anyio, and h11 in gen_requirements_all
|
2022-03-02 03:17:25 +08:00
|
|
|
httpx==0.22.0
|
2022-01-28 07:34:18 +01:00
|
|
|
ifaddr==0.1.7
|
2022-04-01 00:54:13 +02:00
|
|
|
jinja2==3.1.1
|
2022-03-30 13:34:40 +02:00
|
|
|
PyJWT==2.3.0
|
2022-01-28 07:34:18 +01:00
|
|
|
# PyJWT has loose dependency. We want the latest one.
|
2022-04-23 07:50:45 +02:00
|
|
|
cryptography==36.0.2
|
2022-02-07 15:12:04 +01:00
|
|
|
pip>=21.0,<22.1
|
2022-01-28 07:34:18 +01:00
|
|
|
python-slugify==4.0.1
|
|
|
|
pyyaml==6.0
|
|
|
|
requests==2.27.1
|
|
|
|
typing-extensions>=3.10.0.2,<5.0
|
2022-04-13 23:51:39 +02:00
|
|
|
voluptuous==0.13.1
|
2022-01-28 07:34:18 +01:00
|
|
|
voluptuous-serialize==2.5.0
|
|
|
|
yarl==1.7.2
|
|
|
|
|
2022-01-29 05:18:09 +01:00
|
|
|
[options.packages.find]
|
|
|
|
include =
|
|
|
|
homeassistant*
|
|
|
|
|
|
|
|
[options.entry_points]
|
|
|
|
console_scripts =
|
|
|
|
hass = homeassistant.__main__:main
|
|
|
|
|
2016-02-13 19:56:32 -05:00
|
|
|
[flake8]
|
2017-11-19 17:39:24 -08:00
|
|
|
exclude = .venv,.git,.tox,docs,venv,bin,lib,deps,build
|
2021-04-25 00:38:40 -10:00
|
|
|
max-complexity = 25
|
2019-11-06 21:38:00 +02:00
|
|
|
doctests = True
|
2019-07-30 16:59:12 -07:00
|
|
|
# To work with Black
|
|
|
|
# E501: line too long
|
|
|
|
# W503: Line break occurred before a binary operator
|
|
|
|
# E203: Whitespace before ':'
|
|
|
|
# D202 No blank lines allowed after function docstring
|
2019-09-23 23:23:53 -07:00
|
|
|
# W504 line break after binary operator
|
2019-07-30 16:59:12 -07:00
|
|
|
ignore =
|
|
|
|
E501,
|
|
|
|
W503,
|
|
|
|
E203,
|
2019-09-23 23:23:53 -07:00
|
|
|
D202,
|
|
|
|
W504
|
2021-03-02 10:02:04 +02:00
|
|
|
noqa-require-code = True
|