-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (37 loc) · 982 Bytes
/
pyproject.toml
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
30
31
32
33
34
35
36
37
38
39
40
41
# SPDX-FileCopyrightText: Copyright (c) 2024 lbuque
#
# SPDX-License-Identifier: MIT
[build-system]
requires = [
"setuptools",
"wheel",
"setuptools-scm",
]
[project]
name = "micropython-home-assistant"
description = "Home Assistant MQTT integration for MicroPython"
version = "0.1.0"
readme = "README.md"
authors = [
{name = "lbuque", email = "[email protected]"}
]
urls = {Homepage = "https://github.com/lbuque/micropython-home-assistant"}
keywords = [
"micropython",
"home-assistant",
"MQTT"
]
license = {text = "MIT"}
classifiers = [
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Embedded Systems",
"Topic :: System :: Hardware",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
# dynamic = ["dependencies"]
[tool.setuptools]
packages = ["mha"]
# [tool.setuptools.dynamic]
# dependencies = {file = ["requirements.txt"]}