Opened 11 years ago

Closed 11 years ago

#727 closed defect (fixed)

./setup.py install broken because of missing packages

Reported by: Simon Fondrie-Teitler Owned by:
Priority: major Milestone:
Component: programming Keywords:
Cc: Parent Tickets:

Description

right now the setuptools variable packages only includes 'mediagoblin'. This causes './setup.py install' or './setup.py build' to only pull in things that are in the package 'mediagoblin$', and nothing else, like mediagoblin.*

Change History (3)

comment:1 by Simon Fondrie-Teitler, 11 years ago

Owner: set to Simon Fondrie-Teitler
Status: newin_progress

comment:2 by Simon Fondrie-Teitler, 11 years ago

Owner: Simon Fondrie-Teitler removed
Status: in_progressreview

Fix is here:
https://gitorious.org/~simonft/mediagoblin/mediagoblin-debian-pkg/commit/afe014207b1186e7496ab89b0a767a004bb302cc

I got the list with:

find . -iname '__init__.py' | sed "s/.\/\(.*\)\/__init__.py/\t'\1',/" | sed "s/\//./g" | grep -v tests

I'm sure that awk could do it nicer.

comment:3 by Simon Fondrie-Teitler, 11 years ago

Resolution: fixed
Status: reviewclosed

This has been fixed by moving back to find_packages(). I'm resolving.

Note: See TracTickets for help on using tickets.