28 lines
849 B
Python
28 lines
849 B
Python
import setuptools
|
|
|
|
with open("README.md", "r") as fh:
|
|
long_description = fh.read()
|
|
|
|
setuptools.setup(
|
|
name="mfrc522",
|
|
version="0.0.7",
|
|
author="Pi My Life Up",
|
|
author_email="support@pimylifeup.com",
|
|
description="A library to integrate the MFRC522 RFID readers with the Raspberry Pi",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
url="https://github.com/pimylifeup/MFRC522-python",
|
|
packages=setuptools.find_packages(),
|
|
install_requires=[
|
|
'RPi.GPIO',
|
|
'spidev'
|
|
],
|
|
classifiers=[
|
|
"Programming Language :: Python :: 2.7",
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
"Operating System :: POSIX :: Linux",
|
|
'Topic :: System :: Hardware',
|
|
],
|
|
)
|