-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (35 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
42 lines (35 loc) · 1.03 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
[build-system]
requires = ["setuptools>=68.2.0", "pybind11>=2.5.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages]
find = {}
[tool.setuptools.package-data]
src = ["*.h"]
[tool.setuptools.dynamic]
version = { attr = "acbs.__meta_version__" }
[project]
name = "acbs"
dynamic = ["version"]
authors = [{ name = "liushuyu", email = "liushuyu@aosc.io" }]
description = "AOSC CI Building System"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8"
dependencies = ["pyparsing>=2.4,<4"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
]
urls = { "Repository" = "https://github.com/AOSC-Dev/acbs" }
[project.optional-dependencies]
logging = ["pexpect"]
dev = ["pyright", "ruff", "setuptools", "pybind11>=2.5.0", "pexpect"]
[tool.ruff]
line-length = 127
target-version = "py38"
[tool.ruff.lint.mccabe]
max-complexity = 5
[tool.pyright]
exclude = ["build", "dist", "venv", ".venv"]