add setup.py to ui
This commit is contained in:
parent
bc3f8ef007
commit
6ebf7c56a7
|
@ -5,7 +5,5 @@ buildPythonPackage {
|
||||||
|
|
||||||
src = ./.;
|
src = ./.;
|
||||||
|
|
||||||
format = "other";
|
|
||||||
|
|
||||||
propagatedBuildInputs = [ django_4 ];
|
propagatedBuildInputs = [ django_4 ];
|
||||||
}
|
}
|
||||||
|
|
13
ui/setup.py
Normal file
13
ui/setup.py
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
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))
|
||||||
|
]
|
||||||
|
)
|
Loading…
Reference in a new issue