-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 1010 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (35 loc) · 1010 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
35
36
37
38
39
[project]
name = "pybmap"
version = "0.4.0"
description = "Control Bluetooth audio devices over the BMAP protocol"
readme = "README.md"
license = "MIT"
requires-python = ">=3.6"
authors = [
{name = "Aaron Bockelie"},
]
keywords = ["bluetooth", "bmap", "headphones", "audio", "noise-cancellation"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: System :: Hardware",
]
dependencies = []
[project.urls]
Homepage = "https://github.com/aaronsb/bosectl"
Repository = "https://github.com/aaronsb/bosectl"
[project.scripts]
bosectl = "pybmap.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"integration: requires a paired Bluetooth device",
]