-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (49 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
59 lines (49 loc) · 1.19 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[project]
name = "radiacode"
version = "0.3.5"
description = "Library for RadiaCode-101"
authors = [{ name = "Maxim Andreev", email = "andreevmaxim@gmail.com" }]
requires-python = ">=3.9"
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"bluepy~=1.3 ; sys_platform == 'linux'",
"pyusb~=1.3",
]
[project.optional-dependencies]
examples = [
"aiohttp~=3.9",
"prometheus-client>=0.19,<0.20",
"matplotlib~=3.7",
"numpy~=1.26",
"pyyaml~=6.0",
]
[project.urls]
Homepage = "https://github.com/cdump/radiacode"
Repository = "https://github.com/cdump/radiacode"
[dependency-groups]
dev = [
"ruff>=0.11,<0.12",
"mypy~=1.16",
]
[build-system]
requires = ["uv_build>=0.9.13,<0.10.0"]
build-backend = "uv_build"
[tool.uv]
exclude-newer = "1 week"
[tool.ruff]
line-length = 130
target-version = "py310"
[tool.ruff.lint]
extend-select = ["B", "Q"]
[tool.ruff.lint.flake8-quotes]
inline-quotes = "single"
[tool.ruff.format]
quote-style = "single"
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401", "F403"]