19 lines
528 B
Python
19 lines
528 B
Python
from distutils.core import setup
|
|
|
|
description = "Event-driven Python library for interacting with the Dream Cheeky big red button."
|
|
|
|
setup(
|
|
name='python-dream-cheeky',
|
|
version='0.1.0',
|
|
author='Ian Adam Naval',
|
|
author_email='ianonavy@gmail.com',
|
|
packages=['dream_cheeky'],
|
|
scripts=[],
|
|
url='https://git.ianonavy.com/ianonavy/python-dream-cheeky/',
|
|
license='MIT',
|
|
description=description,
|
|
long_description=description,
|
|
install_requires=[],
|
|
|
|
)
|