from setuptools import find_packages, setup setup( name='Rouse', version='0.1', description='Wake-on-LAN sender with convenient browser user interface', author='Dustin C. Hatch', author_email='dustin@hatch.name', url='', license='GPL-3', packages=find_packages('src'), package_dir={'': 'src'}, install_requires=[ 'Milla>=0.3', 'SQLAlchemy', ], entry_points={ 'console_scripts': [ 'rouse=rouse.cli:main', ], }, )