-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 904 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 904 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
from distutils.core import setup
setup (
name = 'glowbit',
version = '0.8',
license='MIT',
description = 'Raspberry Pi (Python 3.x) and Raspberry Pi Pico (MicroPython) driver for GlowBit devices',
long_description = 'Raspberry Pi (Python 3.x) and Raspberry Pi Pico (MicroPython) driver for GlowBit devices',
url = 'https://github.com/CoreElectronics/CE-GlowBit-Python',
author = 'Core Electronics',
author_email = 'production.inbox@coreelectronics.com.au',
classifiers = [
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: MicroPython',
'License :: OSI Approved :: MIT License',
],
py_modules = [
"glowbit",
"petme128"
],
package_dir = {'': 'glowbit'},
)