2022-08-09 02:05:53 +00:00
|
|
|
# SPDX-FileCopyrightText: 2022 Alec Delaney for Adafruit Industries
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = [
|
|
|
|
"setuptools",
|
|
|
|
"wheel",
|
2022-08-09 16:03:54 +00:00
|
|
|
"setuptools-scm",
|
2022-08-09 02:05:53 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "adafruit-circuitpython-pn532"
|
|
|
|
description = "CircuitPython library for controlling PN532 RFID/NFC reader-writer."
|
2022-08-16 22:09:14 +00:00
|
|
|
version = "0.0.0+auto.0"
|
2022-08-09 02:05:53 +00:00
|
|
|
readme = "README.rst"
|
|
|
|
authors = [
|
|
|
|
{name = "Adafruit Industries", email = "circuitpython@adafruit.com"}
|
|
|
|
]
|
|
|
|
urls = {Homepage = "https://github.com/adafruit/Adafruit_CircuitPython_PN532"}
|
|
|
|
keywords = [
|
|
|
|
"adafruit",
|
|
|
|
"pn532",
|
|
|
|
"rfid",
|
|
|
|
"nfc",
|
|
|
|
"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]
|
|
|
|
packages = ["adafruit_pn532"]
|
|
|
|
|
|
|
|
[tool.setuptools.dynamic]
|
|
|
|
dependencies = {file = ["requirements.txt"]}
|
|
|
|
optional-dependencies = {optional = {file = ["optional_requirements.txt"]}}
|