-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (25 loc) · 887 Bytes
/
pyproject.toml
File metadata and controls
27 lines (25 loc) · 887 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "bmi270"
version = "0.4.3"
authors = [{name = "Kevin Sommler", email = "sommler@live.de"}]
description = "BMI270 I2C Python library (bare bones)"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["BMI270", "I2C", "IMU", "sensor", "driver", "accelerometer", "gyroscope", "gyro", "bosch", "sensortech", "smbus2", "library"]
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries",
"Topic :: System :: Hardware",
]
dependencies = [
"smbus2 >= 0.4.2"
]
[project.urls]
"Homepage" = "https://github.com/CoRoLab-Berlin/bmi270_python"
"Bug Tracker" = "https://github.com/CoRoLab-Berlin/bmi270_python/issues"