-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 1 KB
/
pyproject.toml
File metadata and controls
33 lines (30 loc) · 1 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "benlink"
version = "0.1.1"
description = "A cross-platform library for Bluetooth communication with Benshi radios like the Vero VR-N76, RadioOddity GA5WB, and BTech UV-Pro."
authors = [{name = "Kyle Husmann", email = "benlink@kylehusmann.com"}]
readme = "README.md"
license = {text = "Apache-2.0"}
dependencies = [
"typing_extensions >=4.1.0",
"bleak >=0.22.0",
"pydantic >=2.6.0"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Topic :: System :: Hardware",
"Topic :: Communications",
]
requires-python = ">=3.10"
[project.urls]
"Homepage" = "https://github.com/khusmann/benlink"
"Bug Tracker" = "https://github.com/khusmann/benlink/issues"
[tool.setuptools.packages.find]
where = ["src"]