85 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			INI
		
	
	
			
		
		
	
	
			85 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			INI
		
	
	
[metadata]
 | 
						|
name         = homeassistant
 | 
						|
version      = 2022.6.0.dev0
 | 
						|
author       = The Home Assistant Authors
 | 
						|
author_email = hello@home-assistant.io
 | 
						|
license      = Apache-2.0
 | 
						|
platforms    = any
 | 
						|
description  = Open-source home automation platform running on Python 3.
 | 
						|
long_description = file: README.rst
 | 
						|
long_description_content_type = text/x-rst
 | 
						|
keywords     = home, automation
 | 
						|
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/
 | 
						|
classifier =
 | 
						|
    Development Status :: 4 - Beta
 | 
						|
    Intended Audience :: End Users/Desktop
 | 
						|
    Intended Audience :: Developers
 | 
						|
    License :: OSI Approved :: Apache Software License
 | 
						|
    Operating System :: OS Independent
 | 
						|
    Programming Language :: Python :: 3.9
 | 
						|
    Topic :: Home Automation
 | 
						|
 | 
						|
[options]
 | 
						|
packages = find:
 | 
						|
zip_safe = False
 | 
						|
include_package_data = True
 | 
						|
python_requires = >=3.9.0
 | 
						|
install_requires =
 | 
						|
    aiohttp==3.8.1
 | 
						|
    astral==2.2
 | 
						|
    async_timeout==4.0.2
 | 
						|
    attrs==21.2.0
 | 
						|
    atomicwrites==1.4.0
 | 
						|
    awesomeversion==22.5.1
 | 
						|
    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
 | 
						|
    httpx==0.22.0
 | 
						|
    ifaddr==0.1.7
 | 
						|
    jinja2==3.1.2
 | 
						|
    PyJWT==2.4.0
 | 
						|
    # PyJWT has loose dependency. We want the latest one.
 | 
						|
    cryptography==36.0.2
 | 
						|
    pip>=21.0,<22.2
 | 
						|
    python-slugify==4.0.1
 | 
						|
    pyyaml==6.0
 | 
						|
    requests==2.27.1
 | 
						|
    typing-extensions>=3.10.0.2,<5.0
 | 
						|
    voluptuous==0.13.1
 | 
						|
    voluptuous-serialize==2.5.0
 | 
						|
    yarl==1.7.2
 | 
						|
 | 
						|
[options.packages.find]
 | 
						|
include =
 | 
						|
    homeassistant*
 | 
						|
 | 
						|
[options.entry_points]
 | 
						|
console_scripts =
 | 
						|
    hass = homeassistant.__main__:main
 | 
						|
 | 
						|
[flake8]
 | 
						|
exclude = .venv,.git,.tox,docs,venv,bin,lib,deps,build
 | 
						|
max-complexity = 25
 | 
						|
doctests = True
 | 
						|
# 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
 | 
						|
# W504 line break after binary operator
 | 
						|
ignore =
 | 
						|
    E501,
 | 
						|
    W503,
 | 
						|
    E203,
 | 
						|
    D202,
 | 
						|
    W504
 | 
						|
noqa-require-code = True
 |