-
Notifications
You must be signed in to change notification settings - Fork 124
/
pyproject.toml
62 lines (53 loc) · 1.26 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
61
62
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "west"
version = "1.3.99"
authors = [{name = "Zephyr Project", email = "devel@lists.zephyrproject.org"}]
description = "Zephyr RTOS Project meta-tool"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
requires-python = ">=3.9"
dependencies = [
"colorama",
"PyYAML>=5.1",
"pykwalify",
"setuptools",
"packaging",
]
[project.license]
file = "LICENSE"
[project.readme]
file = "README.rst"
content-type = "text/x-rst"
[project.urls]
Homepage = "https://github.com/zephyrproject-rtos/west"
[project.scripts]
west = "west.app.main:main"
[tool.setuptools]
package-dir = {"" = "src"}
zip-safe = false
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
namespaces = false
[tool.ruff]
line-length = 100
[tool.ruff.lint]
extend-select = [
"I", # isort
"B", # flake8-bugbear
"E", # pycodestyle errors
"F", # Pyflakes
"UP", # pyupgrade
"W", # pycodestyle warnings
]
ignore = [
"UP027", # deprecated pyupgrade rule
]