Add __init__.py to web directory

I honestly have zero clue why, but without this file the built
javascript content is not included in the wheel. It makes zero sense,
since the content should be being put into zuul/web/static anyway, so I
don't know why wheel would somehow need this file to find the other.

It's 2018 and computers don't make sense.

Change-Id: Ia451eb7b8f68109e1f810249cae598ec94cb056d
This commit is contained in:
Monty Taylor 2018-10-12 10:09:56 -05:00
parent 3fdfc21ccc
commit 765bf52667
No known key found for this signature in database
GPG Key ID: 7BAE94BC7141A594
1 changed files with 4 additions and 0 deletions

4
web/__init__.py Normal file
View File

@ -0,0 +1,4 @@
# This file is here because without it python setup.py bdist_wheel does not
# pick up the built javascript files in zuul/web/static. It does not cause
# web/ itself to be put into the wheel, but without it built wheels do not
# have the built javascript files.