forked from benleb/PyGlow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 1008 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 1008 Bytes
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= 'PyGlow',
version= '0.2',
author= 'Ben Lebherz',
author_email= 'git@benleb.de',
description= 'A module to control the PiGlow Raspberry Pi Addon Board',
long_description= 'A module to control the PiGlow Raspberry Pi Addon Board from Pimoroni',
license= 'MIT',
keywords= 'Raspberry Pi PiGlow',
url= 'https://github.com/benleb/PyGlow',
classifiers = classifiers,
py_modules= ['PyGlow'],
install_requires= ['rpi.gpio >= 0.5.4']
)