-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 813 Bytes
/
Copy pathpyproject.toml
File metadata and controls
42 lines (36 loc) · 813 Bytes
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 = "sensirion-sps30"
version = "0.1.0"
description = "Python-based driver for Sensirion SPS30 particulate matter sensor over I2C"
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [
{ name = "David", email = "imdavidsu@gmail.com" }
]
dependencies = []
[tool.hatch.build.targets.wheel]
packages = ["src/sps30"]
[dependency-groups]
dev = [
"ruff>=0.15.7",
]
[tool.ruff]
line-length = 88
target-version = "py310"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"C4", # flake8-comprehensions
"B", # flake8-bugbear
"UP", # pyupgrade
]
ignore = []
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pyright]
extraPaths = ["src"]