Skip to content

fixed setup.py

Matias Guijarro requested to merge setup_fix into master

Fix for 2 problems in setup.py:

  • directories without 'init.py' were taken as packages, thus producing this set of errors:

    package init file 'bliss/shell/web/css/__init__.py' not found (or not a regular file)
      package init file 'bliss/shell/web/js/__init__.py' not found (or not a regular file)
      package init file 'bliss/config/conductor/web/css/__init__.py' not found (or not a regular file)
      package init file 'bliss/config/conductor/web/css/bootstrap-notify-styles/__init__.py' not found (or not a regular file)
      package init file 'bliss/config/conductor/web/css/jstree/__init__.py' not found (or not a regular file)
      package init file 'bliss/config/conductor/web/res/__init__.py' not found (or not a regular file)
      package init file 'bliss/config/conductor/web/js/__init__.py' not found (or not a regular file)
      
  • the packages variable in setup function contained / characters instead of .

Merge request reports