-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
39 lines (35 loc) · 1.16 KB
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
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "litime-ble"
version = "0.2.2"
description = "Li Time Bluetooth battery reader via BLE (Python, Bleak)"
readme = "README.md"
requires-python = ">=3.9"
authors = [{ name = "Cameron K. Brooks" }]
license = "MIT"
keywords = ["bluetooth", "ble", "battery", "litime", "solar", "power"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Home Automation",
"Topic :: Scientific/Engineering",
"Topic :: System :: Hardware",
"Topic :: System :: Monitoring",
"Topic :: Utilities",
]
dependencies = ["bleak>=0.22"]
[project.optional-dependencies]
test = ["pytest>=8.2", "pytest-asyncio>=1.2"]
[project.scripts]
litime-battery = "litime_ble.cli:main"
[tool.setuptools.packages.find]
where = ["src"]