-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (33 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
39 lines (33 loc) · 1.08 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
[project]
name = "compost_rpc"
version = "0.7.0.dev"
description = "Compost RPC protocol generator"
authors = [
{ name = "Radovan Blažek", email = "radovan.blazek@st.com" },
{ name = "Petr Moucha", email = "petr.moucha@st.com" },
]
readme = "README.md"
requires-python = ">=3.10"
dependencies = []
keywords = ["protocol", "RPC", "MCU", "embedded"]
license = "BSD-3-Clause"
license-files = ["LICENSE"]
[project.optional-dependencies]
serial = ["pyserial==3.*"]
addons = ["colorful==0.5.*"]
test = ["pytest==8.3.*"]
docs = ["sphinx==8.1.3", "myst-parser==4.0.1", "furo==2024.8.6", "breathe==4.36.0"]
[project.urls]
Issues = "https://github.com/STMicroelectronics/compost-rpc/issues"
Source = "https://github.com/STMicroelectronics/compost-rpc"
documentation = "https://github.com/STMicroelectronics/compost-rpc/wiki"
[tool.ruff]
# Allow lines to be as long as 120.
# The default is impractical due to the code generation strings
line-length = 120
[build-system]
requires = ["uv_build>=0.7.19,<0.8.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = "compost_rpc"
module-root = ""