-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (24 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
30 lines (24 loc) · 1.11 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
# PyPI packaging for Raspberry Pi / Linux (CPython). MicroPython boards install
# via mip (package.json), which ships only protocentral_max30205.py.
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "protocentral-max30205"
version = "1.0.0"
description = "MicroPython + Raspberry Pi driver for the ProtoCentral MAX30205 body-temperature sensor breakout"
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [{ name = "ProtoCentral Electronics", email = "info@protocentral.com" }]
keywords = ["max30205", "temperature", "i2c", "raspberry-pi", "micropython", "sensor", "protocentral"]
dependencies = ["smbus2>=0.4; platform_system == 'Linux'"]
[project.urls]
Homepage = "https://protocentral.com"
Source = "https://github.com/Protocentral/protocentral-micropython-max30205"
[tool.hatch.build.targets.wheel]
include = ["protocentral_max30205.py", "protocentral_max30205_linux.py"]
[tool.hatch.build.targets.sdist]
include = ["protocentral_max30205.py", "protocentral_max30205_linux.py", "examples", "tests", "README.md", "LICENSE.md"]
[tool.ruff]
line-length = 100