forked from embeddedos-org/ebuild
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (43 loc) · 1.07 KB
/
Copy pathpyproject.toml
File metadata and controls
51 lines (43 loc) · 1.07 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ebuild"
version = "3.0.1"
description = "Unified embedded build system — supports Make, CMake, Meson, Cargo, Buildroot, Zephyr, FreeRTOS, NuttX"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
dependencies = [
"click>=8.0",
"pyyaml>=6.0",
"ninja>=1.11",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"flake8>=6.0",
]
[project.scripts]
ebuild = "ebuild.cli.commands:cli"
[project.entry-points."ebuild.plugins"]
[tool.setuptools.packages.find]
include = ["ebuild*"]
[tool.ruff]
exclude = [
".venv",
"core",
"layers/eosuite",
]
[tool.ruff.lint]
select = ["E", "F", "W"]
ignore = [
"E501", # line too long
"E731", # lambda assignment
"E741", # ambiguous variable name
"F403", # star import used (manim requires it in promo/)
"F405", # name may be undefined from a star import
"F541", # f-string without placeholders
"F841", # unused local variable
]