17 lines
385 B
Python
17 lines
385 B
Python
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',
|
|
],
|
|
)
|