forked from tinue/apa102-pi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·29 lines (27 loc) · 993 Bytes
/
setup.py
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
29
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="apa102-pi",
version="2.3.0",
author="Martin Erzberger",
author_email="martin@erzberger.ch",
description="Driver for APA102 LEDs on a Raspberry Pi",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/tinue/apa102-pi",
python_requires='>3',
packages=setuptools.find_packages(),
license='GPLv2',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Intended Audience :: Education",
"Operating System :: POSIX :: Linux",
"Topic :: Education",
"Topic :: System :: Hardware :: Hardware Drivers",
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires=["Adafruit-GPIO"],
platforms=["Raspbian Buster", "Raspberry Pi"]
)