-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
60 lines (51 loc) · 1.56 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[project]
name = "blueutil-tui"
version = "0.2.0"
description = "minimal tui to interact with bluetooth devices via blueutil on Mac"
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "Zaloog", email = "[email protected]" }
]
requires-python = ">=3.10"
dependencies = [
"textual>=1.0.0",
]
keywords = ["python", "textual", "tui", "bluetooth", "mac", "blueutil"]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Environment :: MacOS X",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
]
[project.urls]
Repository = "https://github.com/Zaloog/blueutil-tui"
Changelog = "https://github.com/Zaloog/blueutil-tui/blob/main/CHANGELOG.md"
[project.scripts]
btui = "blueutil_tui:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pre-commit>=4.0.1",
"pytest>=8.3.4",
"pytest-cov>=6.0.0",
"textual-dev>=1.7.0",
]
[tool.pytest.ini_options]
# async for app tests
# asyncio_mode = "auto"
# asyncio_default_fixture_loop_scope = "file"
addopts = "--cov src/blueutil_tui --cov-report term-missing --verbose --color=yes"# -n 4 --dist=loadfile"
testpaths = ["tests"]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/blueutil_tui"]