We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52f03cb commit ae5b1c3Copy full SHA for ae5b1c3
pyproject.toml
@@ -1,6 +1,6 @@
1
[project]
2
name = "proves-circuitpython-rv3028"
3
-version = "1.0.1"
+version = "1.0.2"
4
description = "RV3028 device driver"
5
readme = "README.md"
6
requires-python = ">=3.12.3"
@@ -13,6 +13,9 @@ dev = [
13
"pytest==8.4.1",
14
]
15
16
+[tool.setuptools.packages.find]
17
+include = ["rv3028*"]
18
+
19
[tool.ruff.format]
20
# Use `\n` line endings for all files
21
line-ending = "lf"
@@ -30,7 +33,7 @@ skip_covered = false
30
33
include = [
31
34
"rv3028/registers.py",
32
35
"rv3028/rv3028.py",
- ]
36
+]
37
38
[tool.coverage.html]
39
directory = ".coverage-reports/html"
rv3028/__init__.py
0 commit comments