13 lines
334 B
Python
13 lines
334 B
Python
|
from distutils.core import setup
|
||
|
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'],
|
||
|
data_files = [
|
||
|
('templates', glob('templates/**/*', recursive=True))
|
||
|
]
|
||
|
)
|