diff options
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -132,9 +132,14 @@ try: 'Programming Language :: Python :: 3.4', "Topic :: Internet :: WWW/HTTP :: Dynamic Content" ], - # Running gmg dbupdate fails with missing env.py because env.py isn't - # being included in the Python package (no __init__.py). - data_files=[('mediagoblin', ['mediagoblin/db/migrations/env.py'])], + data_files=[('mediagoblin', [ + # Running gmg dbupdate fails with missing env.py because env.py isn't + # being included in the Python package (no __init__.py). + 'mediagoblin/db/migrations/env.py', + + # Static assets were missing in Guix package. + 'mediagoblin/static', + ])], ) except TypeError as e: import sys |