diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..08625f4 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,46 @@ +# SPDX-FileCopyrightText: 2022 Alec Delaney for Adafruit Industries +# +# SPDX-License-Identifier: MIT + +[build-system] +requires = [ + "setuptools", + "wheel", + "setuptools-scm", +] + +[project] +name = "cedargrove-nau7802" +description = "A CircuitPython driver class for the NAU7802 24-bit ADC" +version = "0.0.0+auto.0" +readme = "README.rst" +authors = [ + {name = "Adafruit Industries", email = "circuitpython@adafruit.com"} +] +urls = {Homepage = "https://github.com/adafruit/CircuitPython"} +keywords = [ + "adafruit", + "nau7802", + "adc", + "sensor", + "hardware", + "micropython", + "circuitpython", +] +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] +py-modules = ["cedargrove_nau7802"] + +[tool.setuptools.dynamic] +dependencies = {file = ["requirements.txt"]} +optional-dependencies = {optional = {file = ["optional_requirements.txt"]}} diff --git a/pyproject.toml.disabled b/pyproject.toml.disabled deleted file mode 100644 index cb5c722..0000000 --- a/pyproject.toml.disabled +++ /dev/null @@ -1,6 +0,0 @@ -# SPDX-FileCopyrightText: 2020 Diego Elio Pettenò -# -# SPDX-License-Identifier: Unlicense - -# This library is not deployed to PyPI. It is either a board-specific helper library, or -# does not make sense for use on or is incompatible with single board computers and Linux.