-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (25 loc) · 644 Bytes
/
pyproject.toml
File metadata and controls
29 lines (25 loc) · 644 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[build-system]
requires = ["setuptools>=65.6"]
build-backend = "setuptools.build_meta"
[project]
name = "esphome-dashboard-api"
version = "1.3.0"
license = {text = "MIT"}
description = "API to interact with ESPHome Dashboard"
readme = "README.md"
authors = [
{name = "ESPHome", email = "esphome@nabucasa.com"}
]
requires-python = ">=3.4.0"
dependencies = [
"aiohttp",
"orjson"
]
[project.urls]
"Homepage" = "https://github.com/esphome/dashboard-api"
[tool.setuptools]
platforms = ["any"]
zip-safe = true
include-package-data = true
[tool.setuptools.packages.find]
include = ["esphome_dashboard_api*"]