18 lines
483 B
Python
18 lines
483 B
Python
from distutils.core import setup
|
|
|
|
description = "Raspberry Pi-based laundry notification system."
|
|
|
|
setup(
|
|
name='laundry-notifier',
|
|
version='0.0.1',
|
|
author='Ian Adam Naval',
|
|
author_email='ianonavy@gmail.com',
|
|
packages=['laundry_notifier'],
|
|
scripts=[],
|
|
url='https://git.ianonavy.com/ianonavy/laundry-notifier/',
|
|
license='MIT',
|
|
description=description,
|
|
long_description=description,
|
|
install_requires=['microstackcommon', 'microstacknode'],
|
|
)
|