forked from joosteto/ws2812-spi
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
27 lines (24 loc) · 1.02 KB
/
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
#!/usr/bin/env python
from distutils.core import setup
classifiers = ['Development Status :: 4 - Beta',
'Operating System :: POSIX :: Linux',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Software Development',
'Topic :: System :: Hardware',
'Topic :: System :: Hardware :: Hardware Drivers']
setup( name = "ws2812",
version = "0.0",
description = "Python bindings for WS2812 communication over SPI.MOSI",
long_description= open('README.md').read() + "\n" + open('CHANGELOG.md').read(),
author = "Joost Witteveen",
author_email = "[email protected]",
maintainer = "Joost Witteveen",
maintainer_email= "[email protected]",
license = "GPLv2",
classifiers = classifiers,
url = "http://github.com/joosteto/raspberry_ws2812",
py_modules = ['ws2812'],
)