-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
86 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# SPDX-FileCopyrightText: 2022 Alec Delaney, for Adafruit Industries | ||
# | ||
# SPDX-License-Identifier: Unlicense |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,55 @@ | ||
# SPDX-FileCopyrightText: 2020 Diego Elio Pettenò | ||
# SPDX-FileCopyrightText: 2022 Alec Delaney for Adafruit Industries | ||
# | ||
# SPDX-License-Identifier: Unlicense | ||
# SPDX-License-Identifier: MIT | ||
|
||
[tool.black] | ||
target-version = ['py35'] | ||
[build-system] | ||
requires = [ | ||
"setuptools", | ||
"wheel", | ||
] | ||
|
||
[project] | ||
name = "adafruit-circuitpython-lsm6ds" | ||
description = "CircuitPython helper library for the LSM6DS family of motion sensors from ST" | ||
version = "0.0.0-auto.0" | ||
readme = "README.rst" | ||
authors = [ | ||
{name = "Adafruit Industries", email = "[email protected]"} | ||
] | ||
urls = {Homepage = "https://github.com/adafruit/Adafruit_CircuitPython_LSM6DS"} | ||
keywords = [ | ||
"adafruit", | ||
"blinka", | ||
"circuitpython", | ||
"micropython", | ||
"lsm6ds", | ||
"lsm6dsox", | ||
"lsmds33", | ||
"lsm6dso32", | ||
"st", | ||
"imu", | ||
"gyro", | ||
"accelerometer", | ||
"ism330dhcx", | ||
"imu", | ||
"gyro", | ||
"gyroscope", | ||
"inemo", | ||
] | ||
license = {text = "MIT"} | ||
classifiers = [ | ||
"Intended Audience :: Developers", | ||
"Topic :: Software Development :: Libraries", | ||
"Topic :: Software Development :: Embedded Systems", | ||
"Topic :: System :: Hardware", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3", | ||
] | ||
dynamic = ["dependencies", "optional-dependencies"] | ||
|
||
[tool.setuptools] | ||
packages = ["adafruit_lsm6ds"] | ||
|
||
[tool.setuptools.dynamic] | ||
dependencies = {file = ["requirements.txt"]} | ||
optional-dependencies = {optional = {file = ["optional_requirements.txt"]}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
# SPDX-FileCopyrightText: 2017 Scott Shawcroft, written for Adafruit Industries | ||
# SPDX-FileCopyrightText: Copyright (c) 2020 Bryan Siepert for Adafruit Industries | ||
# SPDX-FileCopyrightText: 2022 Alec Delaney, for Adafruit Industries | ||
# | ||
# SPDX-License-Identifier: MIT | ||
# SPDX-License-Identifier: Unlicense | ||
|
||
Adafruit-Blinka | ||
adafruit-circuitpython-busdevice | ||
adafruit-circuitpython-register | ||
adafruit-circuitpython-busdevice |