11 lines
282 B
Python
11 lines
282 B
Python
from distutils.core import setup, find_packages
|
|
from glob import glob
|
|
|
|
setup(name='homemanager',
|
|
version='1.0',
|
|
description='HomeManager GUI',
|
|
author='Alejandro Diaz',
|
|
author_email='al.diaz@estudiantec.cr',
|
|
packages=['homemanager', 'main'],
|
|
zip_safe=False,
|
|
) |