-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
26 lines (24 loc) · 851 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
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
sys.path.pop(0)
from setuptools import setup
setup(
name="micropython-ws2801",
py_modules=["ws2801"],
version="1.0.1",
description="MicroPython library for WS2801.",
long_description="This library lets you control strands of WS2801 RGB LEDs.",
keywords="ws2801 rgb led micropython",
url="https://github.com/HeMan/micropython-ws2801",
author="Jimmy Hedman",
author_email="jimmy.hedman@gmail.com",
maintainer="Jimmy Hedman",
maintainer_email="jimmy.hedman@gmail.com",
license="MIT",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: Implementation :: MicroPython",
"License :: OSI Approved :: MIT License",
],
)