-
Notifications
You must be signed in to change notification settings - Fork 54
/
setup.py
25 lines (23 loc) · 935 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
from distutils.core import setup
classifiers = ['Development Status :: 4 - Beta',
'Operating System :: POSIX :: Linux',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Software Development',
'Topic :: System :: Hardware']
setup(name = 'PiGlow',
version = '0.4',
author = 'Jason Barnett',
author_email = '[email protected]',
description = 'A module to control the PiGlow Raspberry Pi Addon Board',
long_description= 'A module to control the PiGlow Raspberry Pi Addon Board',
license = 'MIT',
keywords = 'Raspberry Pi PiGlow',
url = 'http://www.boeeerb.co.uk',
classifiers = classifiers,
py_modules = ['piglow'],
install_requires= ['rpi.gpio >= 0.5.4']
)