-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (26 loc) · 778 Bytes
/
pyproject.toml
File metadata and controls
28 lines (26 loc) · 778 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
28
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "mfrc522-python"
version = "0.0.9"
authors = [
{ name="Aditya"},
]
description = "The mfrc522-python library is used to interact with RFID readers that use the MFRC522 chip interfaced with a Raspberry Pi."
readme = "README.md"
requires-python = ">=3.7"
keywords = ["rfid", "mfrc522", "raspberry-pi", "nfc", "mifare", "spi"]
license = "GPL-3.0-only"
license-files = ["LICENSE"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux",
]
dependencies = [
"RPi.GPIO",
"spidev",
]
[project.urls]
"Homepage" = "https://github.com/1AdityaX/mfrc522-python"
"Bug Tracker" = "https://github.com/1AdityaX/mfrc522-python/issues"