-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
17 lines (16 loc) · 755 Bytes
/
setup.py
File metadata and controls
17 lines (16 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from distutils.core import setup
setup(
name='command-center',
version='0.9',
packages=['', 'api', 'helpers', 'plugins.motors.red_led', 'plugins.motors.green_led', 'plugins.motors.yellow_led',
'plugins.motors.lcd_display', 'plugins.motors.console_debug', 'plugins.motors.sms_notifications',
'plugins.motors.email_notifications', 'plugins.sensors.alarm', 'plugins.sensors.barometer',
'plugins.sensors.dht', 'plugins.sensors.weather_forecast',
'services.user_settings'],
url='https://github.com/sceeter89/command-center',
license='The MIT License',
author='Adam',
author_email='sceeter@wp.pl',
description='',
requires=['bottle', 'yapsy', 'pyhamcrest', 'redis']
)