forked from flip-dots/SolixBLE
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (32 loc) · 1014 Bytes
/
pyproject.toml
File metadata and controls
34 lines (32 loc) · 1014 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
30
31
32
33
34
[project]
name = "SolixBLE"
version = "1.0.0"
dependencies = [
"bleak>=0.19.0",
"bleak-retry-connector"
]
requires-python = ">= 3.11"
authors = [
{ name="Harvey Lelliott", email="harveylelliott@duck.com" },
]
description = "Python module for monitoring Bluetooth Anker Solix devices"
readme = "README.md"
license = {file = "LICENSE.txt"}
keywords = ["Anker", "Solix", "BLE", "Home Assistant"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Home Automation",
"License :: OSI Approved :: MIT License",
"Framework :: AsyncIO",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3.11"
]
[tool.setuptools]
py-modules = ['SolixBLE']
[project.urls]
Homepage = "https://github.com/flip-dots/SolixBLE"
Repository = "https://github.com/flip-dots/SolixBLE"
Issues = "https://github.com/flip-dots/SolixBLE/issues"