-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (35 loc) · 854 Bytes
/
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
[project]
name = "regmap"
description = "A lightweight library to manage direct register field manipulation."
readme = "README.md"
license = {file = "LICENSE"}
dynamic = ["version"]
requires-python = ">=3.8"
[project.urls]
Repository = "https://github.com/8BitJosh/regmap"
[tool.setuptools.packages]
find = {}
[build-system]
requires = ["setuptools>=60", "wheel", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_file = "regmap/_version.py"
[project.optional-dependencies]
dev = [
"build",
"pytest",
"ruff >=0.3.0,<0.4",
]
### Linting Rules ###
[tool.ruff]
line-length = 120
lint.select = [
# "D", # pydocstyle
"E", # pycodestyle error
"F", # pyflakes
"I", # isort
"Q", # flake8-quotes
"RUF", # ruff-specific
"W", # pycodestyle warning
]
preview = true